teleposter/app/build.gradle

31 lines
789 B
Groovy
Raw Normal View History

2016-11-23 22:27:22 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "telegra.ph"
2016-11-25 05:41:52 +00:00
minSdkVersion 9
2016-11-23 22:27:22 +00:00
targetSdkVersion 25
2016-11-25 05:41:52 +00:00
versionCode 2
2016-11-24 19:53:28 +00:00
versionName "0.2 beta"
2016-11-25 05:41:52 +00:00
resConfigs "en", "nodpi"
2016-11-23 22:27:22 +00:00
}
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-11-24 19:53:28 +00:00
applicationIdSuffix '.debug'
versionNameSuffix ' debug'
2016-11-23 22:27:22 +00:00
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:25.0.1'
}