mirror of
https://github.com/nuclearfog/Shitter.git
synced 2024-12-29 02:50:21 +01:00
50 lines
1.6 KiB
Groovy
50 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion '28.0.3'
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId 'org.nuclearfog.twidda'
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 2
|
|
versionName '1.5.4'
|
|
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.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
applicationIdSuffix '.debug'
|
|
versionNameSuffix '.DEBUG'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
|
|
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 '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'
|
|
} |