teleposter/app/build.gradle

43 lines
1.3 KiB
Groovy
Raw Normal View History

2016-11-23 22:27:22 +00:00
apply plugin: 'com.android.application'
2016-11-25 05:59:16 +00:00
apply plugin: 'kotlin-android'
2016-11-23 22:27:22 +00:00
android {
2017-07-14 19:14:05 +00:00
compileSdkVersion 26
buildToolsVersion "26.0.0"
2016-11-23 22:27:22 +00:00
defaultConfig {
applicationId "telegra.ph"
minSdkVersion 15
2017-07-14 19:14:05 +00:00
targetSdkVersion 26
versionCode 9
versionName "1.3.0"
2016-11-25 05:59:16 +00:00
resConfigs "en"
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 {
2017-07-14 19:14:05 +00:00
compile 'com.android.support:appcompat-v7:25.4.0'
compile 'com.android.support:recyclerview-v7:25.4.0'
compile 'com.android.support:support-v13:25.4.0'
2016-11-25 05:59:16 +00:00
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'com.github.delight-im:Android-AdvancedWebView:v3.0.0'
2017-07-14 19:14:05 +00:00
compile 'com.afollestad.material-dialogs:core:0.9.4.5'
compile 'com.afollestad.material-dialogs:commons:0.9.4.5'
compile 'pub.devrel:easypermissions:0.4.2'
2017-07-14 19:14:05 +00:00
compile('com.afollestad:bridge:5.1.2') {
exclude group: 'org.json', module: 'json'
exclude group: 'com.intellij', module: 'annotations'
}
2016-11-23 22:27:22 +00:00
}