mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-07 07:32:54 +01:00
42 lines
1.2 KiB
Groovy
42 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion '28.0.1'
|
|
compileSdkVersion 27
|
|
defaultConfig {
|
|
applicationId "org.nuclearfog.twidda"
|
|
minSdkVersion 22
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName '1.8'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
debuggable false
|
|
//minifyEnabled = true //BUGGY
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
}
|
|
}
|
|
|
|
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:27.1.1'
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
} |