1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-25 15:09:38 +00:00

Update tools versions & prepare JNI work to reduce memory & CPU usage

This commit is contained in:
Loic Blot
2017-07-29 14:54:49 +02:00
committed by Loïc Blot
parent c52168c939
commit 47c2923d0e
14 changed files with 465 additions and 25 deletions
+16
View File
@@ -25,6 +25,17 @@ android {
minSdkVersion 16
targetSdkVersion 26
maxSdkVersion 26
ndk {
// Specifies the ABI configurations of your native
// libraries Gradle should build and package with your APK.
abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a',
'arm64-v8a'
}
externalNativeBuild {
cmake {
cppFlags "-frtti -fexceptions -std=c++11"
}
}
}
buildTypes {
@@ -36,6 +47,11 @@ android {
packagingOptions {
exclude 'META-INF/LICENSE.txt'
}
externalNativeBuild {
cmake {
path 'CMakeLists.txt'
}
}
}
repositories {