Shitter-android-app/app/build.gradle

35 lines
986 B
Groovy
Raw Normal View History

2017-11-04 16:09:25 +01:00
apply plugin: 'com.android.application'
android {
2018-01-10 20:41:55 +01:00
buildToolsVersion '27.0.3'
compileSdkVersion 27
2017-11-04 16:09:25 +01:00
defaultConfig {
applicationId "org.nuclearfog.twidda"
2018-03-18 16:48:08 +01:00
minSdkVersion 22
targetSdkVersion 22
2017-11-04 16:09:25 +01:00
versionCode 1
2018-05-17 17:11:08 +02:00
versionName '1.4'
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-05-22 18:53:51 +02:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-11-04 16:09:25 +01:00
}
2018-02-10 00:42:23 +01:00
}
2017-11-04 16:09:25 +01:00
}
dependencies {
2018-05-17 17:11:08 +02:00
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'
implementation files('libs/colorpicker.aar')
2018-01-19 19:05:06 +01:00
implementation files('libs/picasso-2.5.2.jar')
2018-02-11 11:47:49 +01:00
implementation files('libs/twitter4j-core-4.0.6.jar')
implementation files('libs/twitter4j-core-4.0.6-sources.jar')
2017-11-04 16:09:25 +01:00
}
repositories {
jcenter()
}