mirror of
https://github.com/nuclearfog/Shitter.git
synced 2024-12-29 02:50:21 +01:00
40 lines
1.2 KiB
Groovy
40 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion '28.0.1'
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "org.nuclearfog.twidda"
|
|
minSdkVersion 22
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName '1.5'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
debuggable false
|
|
//minifyEnabled = true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
//minifyEnabled = true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation files('libs/colorpicker.aar')
|
|
implementation files('libs/picasso-2.5.2.jar')
|
|
implementation files('libs/twitter4j-core-4.0.6.jar')
|
|
implementation files('libs/twitter4j-core-4.0.6-sources.jar')
|
|
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
|
|
implementation 'com.android.support:cardview-v7:28.0.0-alpha3'
|
|
implementation 'com.android.support:design:28.0.0-alpha3'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
} |