2017-01-03 00:30:27 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2017-11-05 22:32:36 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-02-03 22:45:14 +01:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-08-31 20:35:30 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2018-07-16 19:01:34 +02:00
|
|
|
def getGitSha = { ->
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
|
|
|
commandLine 'git', 'rev-parse', '--short' , 'HEAD'
|
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return stdout.toString().trim()
|
|
|
|
}
|
|
|
|
|
2017-01-03 00:30:27 +01:00
|
|
|
android {
|
2018-09-16 19:23:32 +02:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.0.2'
|
2017-01-03 00:30:27 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.keylesspalace.tusky"
|
2018-09-16 18:54:12 +02:00
|
|
|
minSdkVersion 21
|
2018-09-16 19:23:32 +02:00
|
|
|
targetSdkVersion 28
|
2018-09-04 19:06:04 +02:00
|
|
|
versionCode 49
|
|
|
|
versionName "3.1"
|
2017-01-03 00:30:27 +01:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-04-08 00:08:51 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2018-08-15 20:46:37 +02:00
|
|
|
proguardFiles 'proguard-rules.pro'
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2018-07-16 19:01:34 +02:00
|
|
|
debug { }
|
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions "color"
|
|
|
|
productFlavors {
|
|
|
|
blue { }
|
|
|
|
green {
|
2017-12-08 12:15:46 +01:00
|
|
|
applicationIdSuffix ".test"
|
2018-07-16 19:01:34 +02:00
|
|
|
versionNameSuffix "-"+getGitSha()
|
2017-12-08 12:15:46 +01:00
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2017-10-25 21:56:27 +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
|
|
|
|
}
|
2018-03-03 13:24:03 +01:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
2018-03-09 22:02:32 +01:00
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources = true
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2018-09-22 17:13:22 +02:00
|
|
|
ext.supportLibraryVersion = '28.0.0'
|
2018-08-31 20:35:30 +02:00
|
|
|
ext.daggerVersion = '2.17'
|
2017-08-03 17:01:02 +02:00
|
|
|
|
2018-06-25 13:02:34 +02:00
|
|
|
|
|
|
|
// if libraries are changed here, they should also be changed in LicenseActivity
|
2017-01-03 00:30:27 +01:00
|
|
|
dependencies {
|
2018-07-30 15:43:27 +02:00
|
|
|
implementation('com.mikepenz:materialdrawer:6.0.9@aar') {
|
2017-03-12 08:31:20 +01:00
|
|
|
transitive = true
|
|
|
|
}
|
2017-12-02 14:59:24 +01:00
|
|
|
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:customtabs:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:recyclerview-v7:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:support-v13:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:design:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:exifinterface:$supportLibraryVersion"
|
2018-06-25 13:02:34 +02:00
|
|
|
implementation "com.android.support:cardview-v7:$supportLibraryVersion"
|
2018-03-27 20:12:43 +02:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
2017-12-02 14:59:24 +01:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.5.2'
|
2018-07-22 14:46:00 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'
|
2017-12-02 14:59:24 +01:00
|
|
|
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
|
2018-07-22 14:46:00 +02:00
|
|
|
implementation 'com.github.connyduck:sparkbutton:1.0.1'
|
2018-08-31 20:35:30 +02:00
|
|
|
implementation 'com.github.chrisbanes:PhotoView:2.1.4'
|
2017-12-02 14:59:24 +01:00
|
|
|
implementation 'com.mikepenz:google-material-typeface:3.0.1.2.original@aar'
|
2018-04-22 14:09:10 +02:00
|
|
|
implementation('com.theartofdev.edmodo:android-image-cropper:2.7.0') {
|
2018-03-01 22:18:50 +01:00
|
|
|
exclude group: 'com.android.support'
|
|
|
|
}
|
2018-06-07 22:59:03 +02:00
|
|
|
implementation 'com.evernote:android-job:1.2.6'
|
2018-08-31 20:35:30 +02:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
2018-05-10 11:16:56 +02:00
|
|
|
// EmojiCompat
|
|
|
|
implementation "com.android.support:support-emoji:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:support-emoji-appcompat:$supportLibraryVersion"
|
2018-07-30 15:31:35 +02:00
|
|
|
implementation 'de.c1710:filemojicompat:1.0.14'
|
2018-06-18 13:26:18 +02:00
|
|
|
// architecture components
|
|
|
|
implementation 'android.arch.lifecycle:extensions:1.1.1'
|
2017-07-05 16:34:59 +02:00
|
|
|
//room
|
2018-06-25 14:49:13 +02:00
|
|
|
implementation 'android.arch.persistence.room:runtime:1.1.1'
|
|
|
|
kapt 'android.arch.persistence.room:compiler:1.1.1'
|
2018-04-20 23:18:37 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2018-03-09 22:02:32 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-03-27 19:47:00 +02: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"
|
2018-09-16 19:23:32 +02:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.0-alpha-3'
|
2018-08-07 21:02:45 +02:00
|
|
|
testImplementation 'org.mockito:mockito-inline:2.21.0'
|
2018-04-13 22:37:21 +02:00
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
|
2017-10-19 14:39:56 +02:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2018-03-03 13:54:58 +01:00
|
|
|
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
|
2018-08-31 20:35:30 +02:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.1'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
|
|
|
implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.0.0-RC2'
|
|
|
|
implementation 'com.uber.autodispose:autodispose-ktx:1.0.0-RC2'
|
2017-11-05 22:32:36 +01:00
|
|
|
}
|