2017-11-04 16:09:25 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-07-06 18:59:52 +02:00
|
|
|
buildToolsVersion '28.0.1'
|
|
|
|
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-07-06 18:59:52 +02:00
|
|
|
targetSdkVersion 28
|
2017-11-04 16:09:25 +01:00
|
|
|
versionCode 1
|
2018-07-06 18:59:52 +02:00
|
|
|
versionName '1.5'
|
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-07-06 18:59:52 +02:00
|
|
|
//minifyEnabled = true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
//minifyEnabled = true
|
2018-05-22 18:53:51 +02:00
|
|
|
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 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')
|
2018-07-06 18:59:52 +02:00
|
|
|
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'
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-05-26 13:23:59 +02:00
|
|
|
google()
|
2017-11-04 16:09:25 +01:00
|
|
|
}
|