Shitter-android-app/app/build.gradle

47 lines
1.4 KiB
Groovy
Raw Normal View History

2017-11-04 16:09:25 +01:00
apply plugin: 'com.android.application'
android {
2018-10-08 17:31:55 +02:00
buildToolsVersion '28.0.3'
2018-08-15 12:44:00 +02:00
compileSdkVersion 28
2018-10-08 17:31:55 +02:00
2017-11-04 16:09:25 +01:00
defaultConfig {
applicationId "org.nuclearfog.twidda"
2018-11-22 08:26:37 +01:00
minSdkVersion 16
2018-08-15 12:44:00 +02:00
targetSdkVersion 28
2017-11-04 16:09:25 +01:00
versionCode 1
2019-01-14 12:59:03 +01:00
versionName '1.4'
2018-02-10 00:42:23 +01:00
vectorDrawables.useSupportLibrary = true
2017-11-04 16:09:25 +01:00
}
2018-10-08 17:31:55 +02:00
2017-11-04 16:09:25 +01:00
buildTypes {
2018-12-24 00:42:02 +01:00
all {
buildConfigField "String", "API_KEY_1", TWITTER_CONSUMER_KEY
buildConfigField "String", "API_KEY_2", TWITTER_CONSUMER_SECRET
}
2017-11-04 16:09:25 +01:00
release {
2018-05-17 17:11:08 +02:00
debuggable false
2018-09-13 18:13:42 +02:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-11-04 16:09:25 +01:00
}
2018-09-15 13:51:32 +02:00
debug {
applicationIdSuffix ".debug"
2018-09-17 17:18:32 +02:00
versionNameSuffix '.DEBUG'
2018-09-15 13:51:32 +02:00
}
2018-02-10 00:42:23 +01:00
}
2017-11-04 16:09:25 +01:00
}
dependencies {
2018-09-27 10:00:57 +02:00
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:exifinterface:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:support-vector-drawable:28.0.0'
implementation 'com.android.support:design:28.0.0'
2018-10-10 21:43:40 +02:00
2018-12-24 20:37:46 +01:00
implementation 'org.twitter4j:twitter4j-core:4.0.7'
implementation 'com.github.QuadFlask:colorpicker:0.0.13'
implementation 'com.squareup.picasso:picasso:2.71828'
2018-10-11 19:30:57 +02:00
implementation(name: 'zoomview', ext: 'aar')
2018-10-21 15:50:06 +02:00
implementation(name: 'tagger', ext: 'aar')
2017-11-04 16:09:25 +01:00
}