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-06-03 01:54:57 +02:00
|
|
|
versionCode 18
|
|
|
|
versionName "1.1.4-beta.2"
|
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-04-13 06:01:02 +02:00
|
|
|
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'
|
2017-04-12 04:50:27 +02:00
|
|
|
compile 'com.android.support:exifinterface:25.3.1'
|
2017-04-28 22:41:44 +02:00
|
|
|
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'
|
2017-03-06 20:48:31 +01:00
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
2017-04-22 07:13:48 +02:00
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.7.0'
|
|
|
|
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
|
2017-03-06 20:48:31 +01:00
|
|
|
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-04-28 22:41:44 +02:00
|
|
|
compile 'com.github.arimorty:floatingsearchview:2.0.4'
|
2017-05-04 16:16:24 +02:00
|
|
|
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.3'
|
|
|
|
compile 'com.jakewharton:butterknife:8.5.1'
|
2017-05-15 12:07:11 +02:00
|
|
|
compile 'org.jsoup:jsoup:1.10.2'
|
2017-05-17 04:19:34 +02:00
|
|
|
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'
|
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|