2017-01-03 00:30:27 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2017-11-16 19:18:11 +01:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-11-05 22:32:36 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2017-01-03 00:30:27 +01:00
|
|
|
|
|
|
|
android {
|
2017-11-09 14:35:52 +01:00
|
|
|
compileSdkVersion 27
|
2017-11-15 21:50:15 +01:00
|
|
|
buildToolsVersion '27.0.1'
|
2017-01-03 00:30:27 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.keylesspalace.tusky"
|
|
|
|
minSdkVersion 15
|
2017-11-09 14:35:52 +01:00
|
|
|
targetSdkVersion 27
|
2017-12-01 22:42:43 +01:00
|
|
|
versionCode 30
|
|
|
|
versionName "1.4.0"
|
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-10-25 21:56:27 +02:00
|
|
|
|
|
|
|
flavorDimensions "store"
|
2017-07-15 02:58:31 +02:00
|
|
|
productFlavors {
|
2017-10-25 21:56:27 +02:00
|
|
|
google {
|
|
|
|
dimension "store"
|
|
|
|
}
|
|
|
|
fdroid {
|
|
|
|
dimension "store"
|
|
|
|
}
|
2017-07-15 02:58:31 +02:00
|
|
|
}
|
2017-04-13 06:01:02 +02:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2017-11-15 21:28:49 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2017-11-30 21:05:56 +01:00
|
|
|
ext.supportLibraryVersion = '27.0.2'
|
2017-08-03 17:01:02 +02:00
|
|
|
|
2017-01-03 00:30:27 +01:00
|
|
|
dependencies {
|
2017-11-15 21:50:15 +01:00
|
|
|
compile('com.mikepenz:materialdrawer:6.0.1@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"
|
2017-11-15 21:28:49 +01:00
|
|
|
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-11-30 21:05:56 +01:00
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.9.1'
|
|
|
|
compile 'com.squareup.okhttp3:logging-interceptor:3.9.1'
|
2017-11-15 21:28:49 +01: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'
|
2017-11-15 21:50:15 +01:00
|
|
|
compile 'com.mikepenz:google-material-typeface:3.0.1.2.original@aar'
|
2017-11-15 21:28:49 +01:00
|
|
|
compile 'com.theartofdev.edmodo:android-image-cropper:2.5.1'
|
2017-11-01 21:02:44 +01:00
|
|
|
compile 'com.evernote:android-job:1.2.0'
|
2017-11-05 22:32:36 +01:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
2017-07-05 16:34:59 +02:00
|
|
|
//room
|
2017-12-02 12:22:52 +01:00
|
|
|
implementation 'android.arch.persistence.room:runtime:1.0.0'
|
2017-11-16 19:18:11 +01:00
|
|
|
kapt 'android.arch.persistence.room:compiler:1.0.0'
|
2017-12-02 12:22:52 +01:00
|
|
|
testCompile 'junit:junit:4.12'
|
2017-10-19 14:39:56 +02:00
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2017-11-16 19:18:11 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
2017-11-05 22:32:36 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2017-10-19 14:39:56 +02:00
|
|
|
}
|