2017-01-03 00:30:27 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-08-03 17:01:02 +02:00
|
|
|
compileSdkVersion 26
|
|
|
|
buildToolsVersion "26.0.1"
|
2017-01-03 00:30:27 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.keylesspalace.tusky"
|
|
|
|
minSdkVersion 15
|
2017-08-03 17:01:02 +02:00
|
|
|
targetSdkVersion 26
|
2017-07-27 22:41:06 +02:00
|
|
|
versionCode 25
|
|
|
|
versionName "1.1.4"
|
2017-01-03 00:30:27 +01:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2017-01-07 23:24:02 +01:00
|
|
|
vectorDrawables.useSupportLibrary true
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-04-08 00:08:51 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
}
|
2017-07-15 02:58:31 +02:00
|
|
|
productFlavors {
|
|
|
|
google {}
|
|
|
|
fdroid {}
|
|
|
|
}
|
2017-04-13 06:01:02 +02:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2017-08-11 19:24:03 +02:00
|
|
|
packagingOptions { //remove metadata files of jsoup library from final build
|
|
|
|
exclude 'META-INF/CHANGES'
|
|
|
|
exclude 'META-INF/LICENSE'
|
|
|
|
exclude 'META-INF/README.md'
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2017-10-19 14:19:08 +02:00
|
|
|
ext.supportLibraryVersion = '26.1.0'
|
2017-08-03 17:01:02 +02:00
|
|
|
|
2017-01-03 00:30:27 +01:00
|
|
|
dependencies {
|
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2017-08-03 17:01:02 +02:00
|
|
|
compile('com.mikepenz:materialdrawer:5.9.5@aar') {
|
2017-03-12 08:31:20 +01:00
|
|
|
transitive = true
|
|
|
|
}
|
2017-08-03 17:01:02 +02:00
|
|
|
compile "com.android.support:appcompat-v7:$supportLibraryVersion"
|
|
|
|
compile "com.android.support:customtabs:$supportLibraryVersion"
|
|
|
|
compile "com.android.support:recyclerview-v7:$supportLibraryVersion"
|
|
|
|
compile "com.android.support:support-v13:$supportLibraryVersion"
|
|
|
|
compile "com.android.support:design:$supportLibraryVersion"
|
|
|
|
compile "com.android.support:exifinterface:$supportLibraryVersion"
|
|
|
|
compile "com.squareup.retrofit2:retrofit:2.3.0"
|
|
|
|
compile "com.squareup.retrofit2:converter-gson:2.3.0"
|
|
|
|
compile "com.squareup.picasso:picasso:2.5.2"
|
2017-10-19 14:19:08 +02:00
|
|
|
compile "com.squareup.okhttp3:okhttp:3.9.0"
|
2017-08-03 17:01:02 +02:00
|
|
|
compile "com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0"
|
|
|
|
compile "com.pkmmte.view:circularimageview:1.1"
|
|
|
|
compile "com.github.varunest:sparkbutton:1.0.5"
|
|
|
|
compile "com.github.chrisbanes:PhotoView:2.1.3"
|
|
|
|
compile "com.mikepenz:google-material-typeface:3.0.1.0.original@aar"
|
2017-10-19 14:19:08 +02:00
|
|
|
compile "com.theartofdev.edmodo:android-image-cropper:2.5.1"
|
2017-08-03 17:01:02 +02:00
|
|
|
compile "org.jsoup:jsoup:1.10.3"
|
|
|
|
compile "org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.1.1"
|
|
|
|
compile("org.eclipse.paho:org.eclipse.paho.android.service:1.1.1") {
|
|
|
|
exclude module: "support-v4"
|
2017-05-17 04:19:34 +02:00
|
|
|
}
|
2017-08-03 17:01:02 +02:00
|
|
|
testCompile "junit:junit:4.12"
|
2017-07-05 16:34:59 +02:00
|
|
|
//room
|
2017-10-19 14:19:08 +02:00
|
|
|
compile "android.arch.persistence.room:runtime:1.0.0-beta2"
|
|
|
|
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0-beta2'
|
2017-08-03 17:01:02 +02:00
|
|
|
googleCompile 'com.google.firebase:firebase-crash:11.0.4'
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2017-07-15 02:58:31 +02:00
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|