Shitter-android-app/app/build.gradle

50 lines
1.7 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-05-20 10:08:43 +02:00
versionName '1.4.4'
2019-05-05 21:15:20 +02: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 {
2019-05-05 17:43:07 +02:00
minifyEnabled false
2018-09-15 13:51:32 +02:00
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 {
2019-05-12 21:11:03 +02:00
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0-alpha05'
implementation 'androidx.exifinterface:exifinterface:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.vectordrawable:vectordrawable:1.0.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.appcompat:appcompat:1.0.2'
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.squareup.picasso:picasso:2.71828'
2019-01-28 20:06:13 +01:00
implementation 'com.github.QuadFlask:colorpicker:0.0.13'
implementation 'com.github.nuclearfog:ZoomView:1.0.1'
implementation 'com.github.nuclearfog:Tagger:1'
2017-11-04 16:09:25 +01:00
}