1
mirror of https://github.com/jlelse/teleposter synced 2024-06-16 13:55:02 +00:00
teleposter/app/build.gradle
2016-11-23 23:27:22 +01:00

28 lines
676 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "telegra.ph"
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "0.1 beta"
}
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:25.0.1'
}