mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-07 07:32:54 +01:00
bbd9d6d85f
Code Cleanup Bug fix
34 lines
1.0 KiB
Groovy
34 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:27.1.1'
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
implementation 'com.android.support:support-vector-drawable:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
} |