2016-02-14 22:04:02 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-06-01 17:57:33 +02:00
|
|
|
apply plugin: 'android-apt'
|
2016-02-14 22:04:02 +01:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 23
|
2016-06-19 10:00:47 +02:00
|
|
|
buildToolsVersion "23.0.3"
|
2016-02-14 22:04:02 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-02-25 22:00:45 +01:00
|
|
|
applicationId "com.simplemobiletools.draw"
|
2016-02-14 22:04:02 +01:00
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 23
|
2016-07-26 22:39:30 +02:00
|
|
|
versionCode 9
|
|
|
|
versionName "1.9"
|
2016-02-14 22:04:02 +01:00
|
|
|
}
|
2016-04-25 23:38:50 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2016-02-14 22:04:02 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2016-04-25 23:38:50 +02:00
|
|
|
minifyEnabled true
|
2016-02-14 22:04:02 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-04-25 23:38:50 +02:00
|
|
|
signingConfig signingConfigs.release
|
2016-02-14 22:04:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testCompile 'junit:junit:4.12'
|
2016-04-11 19:23:00 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:23.3.0'
|
2016-06-01 17:57:33 +02:00
|
|
|
compile 'com.jakewharton:butterknife:8.0.1'
|
2016-02-15 23:04:52 +01:00
|
|
|
compile 'com.github.yukuku:ambilwarna:2.0.1'
|
2016-06-01 17:57:33 +02:00
|
|
|
|
|
|
|
apt 'com.jakewharton:butterknife-compiler:8.0.1'
|
2016-02-14 22:04:02 +01:00
|
|
|
}
|
2016-04-25 23:38:50 +02:00
|
|
|
|
|
|
|
def Properties props = new Properties()
|
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('STORE_PASSWORD') &&
|
|
|
|
props.containsKey('KEY_ALIAS') && props.containsKey('KEY_PASSWORD')) {
|
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
|
|
|
android.signingConfigs.release.storePassword = props['STORE_PASSWORD']
|
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
|
|
|
android.signingConfigs.release.keyPassword = props['KEY_PASSWORD']
|
|
|
|
} else {
|
|
|
|
println 'signing.properties found but some entries are missing'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println 'signing.properties not found'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|