File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments