teleposter/app/build.gradle

31 lines
816 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-24 19:53:28 +00:00
minSdkVersion 13
2016-11-23 22:27:22 +00:00
targetSdkVersion 25
versionCode 1
2016-11-24 19:53:28 +00:00
versionName "0.2 beta"
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'
2016-11-24 19:53:28 +00:00
compile 'com.afollestad.material-dialogs:core:0.9.1.0'
2016-11-23 22:27:22 +00:00
}