1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2024-12-26 01:38:07 +00:00

Updated gradle syntax, disabled debuggable

http://developer.android.com/ndk/guides/ndk-build.html#dvr
This commit is contained in:
M66B 2016-03-26 19:35:41 +01:00
parent 5c5d016bd6
commit 583e67b697

View file

@ -47,16 +47,16 @@ model {
minifyEnabled = true minifyEnabled = true
useProguard = true useProguard = true
proguardFiles.add(file('proguard-rules.pro')) proguardFiles.add(file('proguard-rules.pro'))
ndk { ndk.with {
debuggable = true debuggable = false
} }
} }
debug { debug {
minifyEnabled = true minifyEnabled = true
useProguard = true useProguard = true
proguardFiles.add(file('proguard-rules.pro')) proguardFiles.add(file('proguard-rules.pro'))
ndk { ndk.with {
debuggable = true debuggable = false
} }
} }
} }