Build graddle syntax

This commit is contained in:
M66B 2016-03-11 10:45:46 +01:00
parent a064837d3d
commit 3e61fb9631
1 changed files with 7 additions and 7 deletions

View File

@ -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
}
}
}