mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-07 07:32:54 +01:00
48 lines
1.5 KiB
Groovy
48 lines
1.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion '29.0.2'
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
applicationId 'org.nuclearfog.twidda'
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
versionCode 6
|
|
versionName '1.6'
|
|
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.1.0'
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.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.13'
|
|
implementation 'com.github.nuclearfog:ZoomView:1.0.2'
|
|
implementation 'com.github.nuclearfog:Tagger:1'
|
|
} |