mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-16 11:30:34 +01:00
eca6fb718d
proguard fix
39 lines
1.0 KiB
Groovy
39 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion '28.0.2'
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "org.nuclearfog.twidda"
|
|
minSdkVersion 22
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName '1.1'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
debuggable false
|
|
minifyEnabled = true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.twitter4j:twitter4j-core:4.0.7'
|
|
implementation 'com.github.QuadFlask:colorpicker:0.0.13'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
implementation 'com.android.support:appcompat-v7:28+'
|
|
implementation 'com.android.support:cardview-v7:28+'
|
|
implementation 'com.android.support:support-vector-drawable:28+'
|
|
implementation 'com.android.support:design:28+'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
} |