Simple-Calculator/app/build.gradle

44 lines
1.4 KiB
Groovy
Raw Normal View History

2015-12-24 12:28:00 +01:00
apply plugin: 'com.android.application'
android {
/*signingConfigs {
2016-01-04 23:19:39 +01:00
config {
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
storeFile file('../release.keystore')
storePassword RELEASE_STORE_PASSWORD
}
}*/
2015-12-24 12:28:00 +01:00
compileSdkVersion 23
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "calculator.simplemobiletools.com"
2015-12-24 12:28:00 +01:00
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
2015-12-29 12:49:48 +01:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2015-12-24 12:28:00 +01:00
}
buildTypes {
release {
2016-01-04 23:19:39 +01:00
minifyEnabled true
2015-12-24 12:28:00 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
//signingConfig signingConfigs.config
2015-12-24 12:28:00 +01:00
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
2015-12-24 15:34:45 +01:00
compile 'com.jakewharton:butterknife:7.0.1'
compile 'me.grantland:autofittextview:0.2.1'
2015-12-26 22:35:45 +01:00
testCompile 'junit:junit:4.12'
2015-12-29 12:49:48 +01:00
testCompile 'org.robolectric:robolectric:3.0'
androidTestCompile 'com.android.support:support-annotations:23.1.1'
androidTestCompile 'com.android.support.test:runner:0.4.1'
androidTestCompile 'com.android.support.test:rules:0.4.1'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
2015-12-24 12:28:00 +01:00
}