Shitter-android-app/app/build.gradle

37 lines
1.1 KiB
Groovy
Raw Normal View History

2017-11-04 16:09:25 +01:00
apply plugin: 'com.android.application'
android {
2018-08-15 12:44:00 +02:00
buildToolsVersion '28.0.2'
compileSdkVersion 28
2017-11-04 16:09:25 +01:00
defaultConfig {
applicationId "org.nuclearfog.twidda"
2018-03-18 16:48:08 +01:00
minSdkVersion 22
2018-08-15 12:44:00 +02:00
targetSdkVersion 28
2017-11-04 16:09:25 +01:00
versionCode 1
versionName '1.1'
2018-02-10 00:42:23 +01:00
vectorDrawables.useSupportLibrary = true
2017-11-04 16:09:25 +01:00
}
buildTypes {
release {
2018-05-17 17:11:08 +02:00
debuggable false
2018-09-13 18:13:42 +02:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-11-04 16:09:25 +01:00
}
2018-09-15 13:51:32 +02:00
debug {
applicationIdSuffix ".debug"
}
2018-02-10 00:42:23 +01:00
}
2018-08-02 13:28:22 +02:00
lintOptions {
checkReleaseBuilds false
}
2017-11-04 16:09:25 +01:00
}
dependencies {
implementation 'org.twitter4j:twitter4j-core:4.0.7'
implementation 'com.github.QuadFlask:colorpicker:0.0.13'
implementation 'com.squareup.picasso:picasso:2.71828'
2018-09-15 20:15:06 +02:00
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'
2017-11-04 16:09:25 +01:00
}