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 {
|
2019-06-01 14:17:58 +02:00
|
|
|
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-07-02 10:29:52 +02:00
|
|
|
versionName '1.5.3'
|
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 {
|
2019-06-01 14:17:58 +02:00
|
|
|
buildConfigField 'String', 'API_KEY_1', TWITTER_CONSUMER_KEY
|
|
|
|
buildConfigField 'String', 'API_KEY_2', TWITTER_CONSUMER_SECRET
|
2018-12-24 00:42:02 +01:00
|
|
|
}
|
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
|
2018-09-14 17:52:55 +02:00
|
|
|
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
|
2019-06-01 14:17:58 +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'
|
2019-06-17 22:00:47 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
|
2019-05-12 21:11:03 +02:00
|
|
|
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'
|
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'
|
2019-06-01 14:17:58 +02:00
|
|
|
implementation 'com.github.nuclearfog:ZoomView:1.0.2'
|
2019-05-12 00:11:48 +02:00
|
|
|
implementation 'com.github.nuclearfog:Tagger:1'
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|