2017-11-04 16:09:25 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2020-08-23 10:59:02 +02:00
|
|
|
buildToolsVersion '30.0.2'
|
2020-10-07 21:38:25 +02:00
|
|
|
compileSdkVersion 30
|
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
|
2020-10-07 21:38:25 +02:00
|
|
|
targetSdkVersion 30
|
2020-10-19 11:08:08 +02:00
|
|
|
versionCode 24
|
|
|
|
versionName '1.8'
|
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
|
2019-08-15 17:55:58 +02:00
|
|
|
shrinkResources true
|
2019-09-15 11:50:44 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.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 {
|
2020-08-12 11:45:39 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
2019-09-15 11:50:44 +02:00
|
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
2020-09-07 17:23:57 +02:00
|
|
|
implementation 'com.google.android.material:material:1.2.1'
|
2019-12-08 16:13:14 +01:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
2019-11-10 15:57:38 +01:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.cardview:cardview:1.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.squareup.picasso:picasso:2.71828'
|
2020-05-26 21:12:57 +02:00
|
|
|
implementation 'com.github.QuadFlask:colorpicker:0.0.15'
|
2019-06-01 14:17:58 +02:00
|
|
|
implementation 'com.github.nuclearfog:ZoomView:1.0.2'
|
2020-03-18 15:04:57 +01:00
|
|
|
implementation 'com.github.nuclearfog:Tagger:2.2'
|
2020-05-08 14:56:24 +02:00
|
|
|
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.2'
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|