mirror of
https://github.com/M66B/NetGuard.git
synced 2024-12-25 01:07:52 +00:00
Build graddle syntax
This commit is contained in:
parent
a064837d3d
commit
3e61fb9631
1 changed files with 7 additions and 7 deletions
|
@ -6,9 +6,9 @@ model {
|
|||
buildToolsVersion = "23.0.2"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "eu.faircode.netguard"
|
||||
minSdkVersion.apiLevel 14
|
||||
targetSdkVersion.apiLevel 23
|
||||
applicationId = "eu.faircode.netguard"
|
||||
minSdkVersion.apiLevel = 14
|
||||
targetSdkVersion.apiLevel = 23
|
||||
versionCode = 2016031002
|
||||
versionName = "2.6"
|
||||
archivesBaseName = "NetGuard-v$versionName-$versionCode"
|
||||
|
@ -43,17 +43,17 @@ model {
|
|||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled true
|
||||
minifyEnabled = true
|
||||
useProguard = true
|
||||
proguardFiles.add(file('proguard-rules.pro'))
|
||||
ndk {
|
||||
debuggable true
|
||||
debuggable = true
|
||||
}
|
||||
}
|
||||
debug {
|
||||
useProguard false
|
||||
useProguard = false
|
||||
ndk {
|
||||
debuggable true
|
||||
debuggable = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue