mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-10 17:03:22 +01:00
69c0759f70
layout fix, bug fix
49 lines
1.6 KiB
Groovy
49 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion '30.0.2'
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
applicationId 'org.nuclearfog.twidda'
|
|
minSdkVersion 16
|
|
targetSdkVersion 30
|
|
versionCode 24
|
|
versionName '1.8'
|
|
vectorDrawables.useSupportLibrary true
|
|
}
|
|
|
|
buildTypes {
|
|
all {
|
|
buildConfigField 'String', 'API_KEY_1', TWITTER_CONSUMER_KEY
|
|
buildConfigField 'String', 'API_KEY_2', TWITTER_CONSUMER_SECRET
|
|
}
|
|
release {
|
|
debuggable false
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
applicationIdSuffix '.debug'
|
|
versionNameSuffix '.DEBUG'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
|
implementation 'com.google.android.material:material:1.2.1'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'org.twitter4j:twitter4j-core:4.0.7'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
implementation 'com.github.QuadFlask:colorpicker:0.0.15'
|
|
implementation 'com.github.nuclearfog:ZoomView:1.0.2'
|
|
implementation 'com.github.nuclearfog:Tagger:2.2'
|
|
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.2'
|
|
} |