Simple-Calculator/app/build.gradle

66 lines
1.9 KiB
Groovy
Raw Normal View History

2015-12-24 11:28:00 +00:00
apply plugin: 'com.android.application'
2017-10-22 13:37:36 +00:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2015-12-24 11:28:00 +00:00
2019-04-07 20:54:30 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2015-12-24 11:28:00 +00:00
android {
2019-11-26 10:51:38 +00:00
compileSdkVersion 29
buildToolsVersion '29.0.2'
2016-04-25 20:45:24 +00:00
2015-12-24 11:28:00 +00:00
defaultConfig {
2016-02-28 14:56:08 +00:00
applicationId "com.simplemobiletools.calculator"
2018-10-19 16:14:18 +00:00
minSdkVersion 21
2019-11-26 10:51:38 +00:00
targetSdkVersion 29
2019-11-26 10:52:28 +00:00
versionCode 29
versionName "5.1.0"
2017-11-29 20:34:46 +00:00
setProperty("archivesBaseName", "calculator")
2015-12-29 11:49:48 +00:00
2018-10-05 20:08:10 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2015-12-24 11:28:00 +00:00
}
2016-04-25 20:23:03 +00:00
2016-04-25 20:19:28 +00:00
signingConfigs {
2019-04-07 20:54:30 +00:00
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2016-04-25 20:19:28 +00:00
}
2016-04-25 20:23:03 +00:00
2015-12-24 11:28:00 +00:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2015-12-24 11:28:00 +00:00
release {
2016-01-04 22:19:39 +00:00
minifyEnabled true
2015-12-24 11:28:00 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-04-25 20:19:28 +00:00
signingConfig signingConfigs.release
2015-12-24 11:28:00 +00:00
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2015-12-24 11:28:00 +00:00
}
dependencies {
2019-11-26 10:51:38 +00:00
implementation 'com.simplemobiletools:commons:5.20.0'
2017-11-29 20:34:46 +00:00
implementation 'me.grantland:autofittextview:0.2.1'
2016-06-01 16:00:18 +00:00
2017-11-29 20:34:46 +00:00
testImplementation 'junit:junit:4.12'
2018-10-05 20:08:10 +00:00
testImplementation 'org.robolectric:robolectric:3.8'
2018-10-05 20:08:10 +00:00
androidTestImplementation 'androidx.annotation:annotation:1.0.0'
2018-10-19 16:14:18 +00:00
androidTestImplementation 'androidx.test:runner:1.1.0-beta02'
androidTestImplementation 'androidx.test:rules:1.1.0-beta02'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-beta02'
}