Skip to content

Commit 24f80ba

Browse files
Efraín EspadaEfraín Espada
authored andcommitted
config
1 parent b16a67b commit 24f80ba

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ android {
1616
}
1717
buildTypes {
1818
release {
19-
minifyEnabled false
19+
minifyEnabled true
2020
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2121
}
2222
debug {
23+
minifyEnabled true
24+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2325
}
2426
}
2527
}

library/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Sets the minimum version of CMake required to build the native library.
55

6-
cmake_minimum_required(VERSION 3.4.1)
6+
cmake_minimum_required(VERSION 3.10.2)
77

88
# Creates and names a library, sets it as either STATIC
99
# or SHARED, and provides the relative paths to its source code.

library/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ android {
2222
}
2323
buildTypes {
2424
release {
25-
minifyEnabled false
25+
minifyEnabled true
2626
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2727
}
2828
debug {
29-
minifyEnabled false
29+
minifyEnabled true
3030
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3131
}
3232
}
3333
externalNativeBuild {
3434
cmake {
35+
version "3.13.1"
3536
path "CMakeLists.txt"
3637
}
3738
}

0 commit comments

Comments
 (0)