Yuito-app-android/app/build.gradle

67 lines
2.4 KiB
Groovy
Raw Normal View History

2017-01-03 00:30:27 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
2017-05-04 16:16:24 +02:00
buildToolsVersion "25.0.3"
2017-01-03 00:30:27 +01:00
defaultConfig {
applicationId "com.keylesspalace.tusky"
minSdkVersion 15
targetSdkVersion 25
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"
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
}
}
productFlavors {
google {}
fdroid {}
}
lintOptions {
disable 'MissingTranslation'
}
2017-01-03 00:30:27 +01:00
}
dependencies {
2017-03-07 12:11:18 +01:00
compile fileTree(include: ['*.jar'], dir: 'libs')
2017-01-03 00:30:27 +01:00
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
2017-05-04 16:16:24 +02:00
compile('com.mikepenz:materialdrawer:5.9.1@aar') {
2017-03-12 08:31:20 +01:00
transitive = true
}
2017-04-06 03:37:26 +02:00
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:customtabs:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:support-v13:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:exifinterface:25.3.1'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
2017-05-04 16:16:24 +02:00
compile 'com.squareup.retrofit2:converter-gson:2.2.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp3:okhttp:3.7.0'
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
compile 'com.pkmmte.view:circularimageview:1.1'
2017-05-04 16:16:24 +02:00
compile 'com.github.varunest:sparkbutton:1.0.5'
compile 'com.github.chrisbanes:PhotoView:2.0.0'
2017-03-10 04:00:09 +01:00
compile 'com.mikepenz:google-material-typeface:3.0.1.0.original@aar'
2017-05-04 16:16:24 +02:00
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.3'
2017-05-15 12:07:11 +02:00
compile 'org.jsoup:jsoup:1.10.2'
compile 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.1.0'
compile('org.eclipse.paho:org.eclipse.paho.android.service:1.1.1') {
exclude module: 'support-v4'
}
2017-05-19 00:10:46 +02:00
testCompile 'junit:junit:4.12'
2017-07-05 16:34:59 +02:00
//room
2017-07-17 00:26:56 +02:00
compile 'android.arch.persistence.room:runtime:1.0.0-alpha3'
2017-06-28 19:32:50 +02:00
annotationProcessor "android.arch.persistence.room:compiler:1.0.0-alpha3"
googleCompile 'com.google.firebase:firebase-crash:10.0.1'
2017-01-03 00:30:27 +01:00
}
apply plugin: 'com.google.gms.google-services'