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:
parent
5c5d016bd6
commit
583e67b697
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue