2017-01-03 10:30:27 +11:00
|
|
|
apply plugin: 'com.android.application'
|
2017-11-06 08:32:36 +11:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-02-04 08:45:14 +11:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-09-01 04:35:30 +10:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2018-07-17 03:01:34 +10:00
|
|
|
def getGitSha = { ->
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
2019-06-10 00:55:34 +10:00
|
|
|
commandLine 'git', 'rev-parse', '--short', 'HEAD'
|
2018-07-17 03:01:34 +10:00
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return stdout.toString().trim()
|
|
|
|
}
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
android {
|
2018-09-17 03:23:32 +10:00
|
|
|
compileSdkVersion 28
|
2017-01-03 10:30:27 +11:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.keylesspalace.tusky"
|
2018-09-17 02:54:12 +10:00
|
|
|
minSdkVersion 21
|
2018-09-17 03:23:32 +10:00
|
|
|
targetSdkVersion 28
|
2019-07-12 04:03:55 +10:00
|
|
|
versionCode 65
|
|
|
|
versionName "8.1"
|
2018-12-18 01:25:35 +11:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-09-26 03:04:57 +10:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2018-12-26 06:06:28 +11:00
|
|
|
|
|
|
|
kapt {
|
|
|
|
arguments {
|
|
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-04-08 08:08:51 +10:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2018-08-16 04:46:37 +10:00
|
|
|
proguardFiles 'proguard-rules.pro'
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
2019-06-10 00:55:34 +10:00
|
|
|
debug {}
|
2018-07-17 03:01:34 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions "color"
|
|
|
|
productFlavors {
|
2019-06-10 00:55:34 +10:00
|
|
|
blue {}
|
2018-07-17 03:01:34 +10:00
|
|
|
green {
|
2017-12-08 22:15:46 +11:00
|
|
|
applicationIdSuffix ".test"
|
2019-06-10 00:55:34 +10:00
|
|
|
versionNameSuffix "-" + getGitSha()
|
2017-12-08 22:15:46 +11:00
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
2017-10-26 06:56:27 +11:00
|
|
|
|
2017-04-13 14:01:02 +10:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2017-11-16 07:28:49 +11:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2018-03-03 23:24:03 +11:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
2018-03-10 08:02:32 +11:00
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources = true
|
|
|
|
}
|
|
|
|
}
|
2018-12-26 06:06:28 +11:00
|
|
|
sourceSets {
|
|
|
|
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
|
|
|
|
}
|
|
|
|
|
2018-12-18 05:08:32 +11:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
// Exclude unneeded files added by libraries
|
|
|
|
exclude 'LICENSE_OFL'
|
|
|
|
exclude 'LICENSE_UNICODE'
|
|
|
|
}
|
2019-03-30 05:56:53 +11:00
|
|
|
bundle {
|
|
|
|
language {
|
|
|
|
// bundle all languages in every apk so the dynamic language switching works
|
|
|
|
enableSplit = false
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2019-05-18 16:06:30 +10:00
|
|
|
project.tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-29 04:00:19 +10:00
|
|
|
ext.daggerVersion = '2.24'
|
2019-06-10 03:48:04 +10:00
|
|
|
ext.retrofitVersion = '2.6.0'
|
2017-08-04 01:01:02 +10:00
|
|
|
|
2018-06-25 21:02:34 +10:00
|
|
|
// if libraries are changed here, they should also be changed in LicenseActivity
|
2017-01-03 10:30:27 +11:00
|
|
|
dependencies {
|
2019-04-28 17:51:58 +10:00
|
|
|
implementation('com.mikepenz:materialdrawer:6.1.2@aar') {
|
2017-03-12 18:31:20 +11:00
|
|
|
transitive = true
|
|
|
|
}
|
2019-05-18 16:06:30 +10:00
|
|
|
implementation 'androidx.core:core:1.0.2'
|
2018-12-18 01:25:35 +11:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
implementation 'androidx.browser:browser:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
2019-05-21 00:56:58 +10:00
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha05'
|
2018-12-18 01:25:35 +11:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.0.0'
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2019-07-28 05:51:37 +10:00
|
|
|
implementation 'androidx.preference:preference:1.1.0-rc01'
|
2019-06-10 03:48:04 +10:00
|
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
|
|
|
|
implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion"
|
|
|
|
implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion"
|
2019-07-17 03:36:04 +10:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.0.1'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.0.1'
|
2019-04-08 03:37:04 +10:00
|
|
|
implementation 'org.conscrypt:conscrypt-android:2.1.0'
|
2018-12-18 01:25:35 +11:00
|
|
|
implementation 'com.github.connyduck:sparkbutton:2.0.0'
|
|
|
|
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
|
|
|
|
implementation 'com.mikepenz:google-material-typeface:3.0.1.3.original@aar'
|
|
|
|
implementation('com.theartofdev.edmodo:android-image-cropper:2.8.0') {
|
2018-03-02 08:18:50 +11:00
|
|
|
exclude group: 'com.android.support'
|
|
|
|
}
|
2018-06-08 06:59:03 +10:00
|
|
|
implementation 'com.evernote:android-job:1.2.6'
|
2018-12-18 01:25:35 +11:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2018-05-10 19:16:56 +10:00
|
|
|
// EmojiCompat
|
2018-12-18 01:25:35 +11:00
|
|
|
implementation 'androidx.emoji:emoji:1.0.0'
|
|
|
|
implementation 'androidx.emoji:emoji-appcompat:1.0.0'
|
2019-06-07 05:51:56 +10:00
|
|
|
implementation 'de.c1710:filemojicompat:1.0.17'
|
2018-06-18 21:26:18 +10:00
|
|
|
// architecture components
|
2018-12-18 01:25:35 +11:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
|
2017-07-06 00:34:59 +10:00
|
|
|
//room
|
2019-06-17 21:43:11 +10:00
|
|
|
implementation 'androidx.room:room-runtime:2.1.0'
|
2019-06-10 00:55:34 +10:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2019-06-17 21:43:11 +10:00
|
|
|
kapt 'androidx.room:room-compiler:2.1.0'
|
|
|
|
implementation 'androidx.room:room-rxjava2:2.1.0'
|
2019-05-25 02:42:13 +10:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2018-03-28 04:47:00 +11:00
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
|
|
|
implementation "com.google.dagger:dagger-android:$daggerVersion"
|
|
|
|
implementation "com.google.dagger:dagger-android-support:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-android-processor:$daggerVersion"
|
2019-06-10 03:48:04 +10:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.3'
|
|
|
|
testImplementation 'org.mockito:mockito-inline:2.28.2'
|
2019-03-31 01:18:16 +11:00
|
|
|
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
|
2019-04-08 03:37:04 +10:00
|
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', {
|
2017-10-19 23:39:56 +11:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2019-03-31 01:18:16 +11:00
|
|
|
androidTestImplementation 'android.arch.persistence.room:testing:1.1.1'
|
2019-06-10 03:48:04 +10:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
testImplementation 'androidx.test.ext:junit:1.1.1'
|
2018-03-03 23:54:58 +11:00
|
|
|
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
|
2019-07-17 03:36:04 +10:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.10'
|
2019-04-08 03:37:04 +10:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
2018-10-04 05:27:52 +10:00
|
|
|
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
|
2019-05-18 16:06:30 +10:00
|
|
|
implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.3.0'
|
|
|
|
implementation 'com.uber.autodispose:autodispose:1.3.0'
|
2019-02-16 06:41:10 +11:00
|
|
|
implementation 'androidx.paging:paging-runtime-ktx:2.1.0'
|
2019-04-17 05:39:12 +10:00
|
|
|
|
|
|
|
//Glide
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
|
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:4.9.0'
|
2019-06-26 05:10:34 +10:00
|
|
|
implementation 'jp.wasabeef:glide-transformations:3.1.1' // intentionally use 3.x version because of 2mb smaller apk
|
2019-06-10 00:55:34 +10:00
|
|
|
|
|
|
|
//Add some useful extensions
|
|
|
|
implementation 'androidx.core:core-ktx:1.2.0-alpha01'
|
2017-11-06 08:32:36 +11:00
|
|
|
}
|