0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-20 20:23:04 +02:00
zapp/app/build.gradle

175 lines
5.0 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
apply plugin: 'com.mikepenz.aboutlibraries.plugin'
2020-05-09 19:22:08 +02:00
apply plugin: 'kotlin-android'
2020-06-18 21:26:13 +02:00
apply plugin: 'kotlin-kapt'
apply plugin: 'koin'
2020-05-09 19:22:08 +02:00
android {
2021-06-19 18:22:29 +02:00
compileSdkVersion 30
buildToolsVersion '30.0.3'
defaultConfig {
applicationId "de.christinecoenen.code.zapp"
2018-10-19 21:22:23 +02:00
minSdkVersion 21
2021-06-19 18:22:29 +02:00
targetSdkVersion 30
2020-11-26 21:01:24 +01:00
versionCode 47
versionName "3.6.1"
2018-09-29 20:34:52 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
2020-07-05 21:03:01 +02:00
2017-11-02 20:35:13 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2020-07-05 21:03:01 +02:00
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
2020-07-05 21:03:01 +02:00
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas")
}
}
2019-06-12 11:35:01 +02:00
packagingOptions {
exclude 'META-INF/library-core_release.kotlin_module'
}
2020-07-05 21:03:01 +02:00
2020-07-05 13:02:48 +02:00
buildFeatures {
viewBinding {
enabled = true
}
2020-05-01 11:24:53 +02:00
}
2017-11-02 20:35:13 +01:00
buildTypes {
2017-03-26 13:51:21 +02:00
debug {
2017-10-13 16:13:47 +02:00
shrinkResources false
2017-03-26 13:51:21 +02:00
}
release {
2017-10-13 16:13:47 +02:00
shrinkResources true
2017-03-26 13:51:21 +02:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
testOptions {
unitTests {
includeAndroidResources = true
2019-06-19 10:48:32 +02:00
all {
testLogging {
events 'passed', 'skipped', 'failed', 'standardError'
exceptionFormat 'full'
}
if (project.hasProperty('ci')) {
// tests that should *not* run on ci machines:
exclude '**/JsonChannelListConnectionTest*'
}
2019-06-19 10:48:32 +02:00
}
}
}
}
configurations {
cleanedAnnotations
2018-12-06 21:08:24 +01:00
compile.exclude group: 'org.jetbrains', module: 'annotations'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2020-05-09 19:22:08 +02:00
// kotlin
2021-06-19 11:18:47 +02:00
implementation 'androidx.core:core-ktx:1.5.0'
2020-05-09 19:22:08 +02:00
// tests
2020-09-01 20:01:12 +02:00
debugImplementation 'androidx.test:core:1.3.0'
2021-06-19 11:18:47 +02:00
debugImplementation 'androidx.fragment:fragment-testing:1.3.5'
2019-06-23 14:05:38 +02:00
2019-05-23 14:55:58 +02:00
// device tests
2021-01-09 21:33:31 +01:00
androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.2'
2020-09-01 20:01:12 +02:00
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.3.0'
2019-05-23 14:55:58 +02:00
// unit tests
2021-01-09 21:33:31 +01:00
testImplementation 'androidx.test.ext:junit-ktx:1.1.2'
testImplementation 'androidx.test:core-ktx:1.3.0'
2021-06-19 17:44:06 +02:00
testImplementation 'org.robolectric:robolectric:4.4.1'
2019-05-29 21:12:16 +02:00
2016-10-11 21:21:17 +02:00
// support
2021-06-19 11:18:47 +02:00
implementation 'androidx.fragment:fragment-ktx:1.3.5'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.3.0'
2020-12-26 21:01:15 +01:00
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2018-09-29 20:34:52 +02:00
implementation 'androidx.cardview:cardview:1.0.0'
2021-06-19 11:18:47 +02:00
implementation 'androidx.annotation:annotation:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2020-12-26 21:01:15 +01:00
implementation 'androidx.preference:preference-ktx:1.1.1'
implementation "androidx.paging:paging-runtime-ktx:2.1.2"
2021-06-19 11:18:47 +02:00
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
2016-10-11 21:21:17 +02:00
2020-06-18 21:26:13 +02:00
// room database
2021-06-19 11:18:47 +02:00
def room_version = "2.3.0"
2020-07-05 13:02:48 +02:00
implementation "androidx.room:room-runtime:$room_version"
2020-06-18 21:26:13 +02:00
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
2021-06-19 11:18:47 +02:00
implementation "androidx.room:room-rxjava2:$room_version"
2020-06-18 21:26:13 +02:00
2016-10-11 21:21:17 +02:00
// helper
2021-06-19 17:44:06 +02:00
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'commons-io:commons-io:2.10.0'
2016-10-11 21:21:17 +02:00
// sortable list
2020-08-11 09:43:14 +02:00
implementation 'com.github.woxthebox:draglistview:1.7.2'
2016-10-11 21:21:17 +02:00
2016-11-02 11:34:33 +01:00
// markdown
2019-05-16 20:35:38 +02:00
implementation 'ru.noties:markwon:2.0.2'
2016-11-02 11:34:33 +01:00
2020-05-09 19:22:08 +02:00
// fetch download manager
2020-09-01 20:01:12 +02:00
implementation 'androidx.tonyodev.fetch2:xfetch2:3.1.5'
implementation 'androidx.tonyodev.fetch2okhttp:xfetch2okhttp:3.1.5'
2020-05-09 19:22:08 +02:00
2017-05-11 22:51:51 +02:00
// exo player
2021-06-19 11:18:47 +02:00
def exoplayer_version = "2.14.1"
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version"
implementation "com.google.android.exoplayer:exoplayer-hls:$exoplayer_version"
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version"
implementation "com.google.android.exoplayer:extension-mediasession:$exoplayer_version"
2017-05-11 22:51:51 +02:00
// retrofit rest client
2020-08-11 09:43:14 +02:00
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
2017-07-29 15:48:59 +02:00
// ACRA crash reporting
2021-06-19 17:44:06 +02:00
def acra_version = "5.8.3"
implementation "ch.acra:acra-mail:$acra_version"
implementation "ch.acra:acra-dialog:$acra_version"
2017-07-30 14:46:07 +02:00
// timber logging
implementation 'com.jakewharton.timber:timber:4.7.1'
// joda time
2021-06-19 17:44:06 +02:00
implementation 'joda-time:joda-time:2.10.10'
2018-10-07 16:06:33 +02:00
// rxjava
2021-06-19 17:44:06 +02:00
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
2019-07-31 20:46:06 +02:00
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
2018-10-07 16:06:33 +02:00
// about libraries view
implementation "com.mikepenz:aboutlibraries:$about_libraries_version"
// koin dependency injection
2021-06-19 17:44:06 +02:00
implementation "io.insert-koin:koin-androidx-scope:$koin_version"
implementation "io.insert-koin:koin-androidx-viewmodel:$koin_version"
implementation "io.insert-koin:koin-androidx-fragment:$koin_version"
androidTestImplementation "io.insert-koin:koin-test:$koin_version"
testImplementation "io.insert-koin:koin-test:$koin_version"
2020-06-18 21:26:13 +02:00
2021-06-19 17:44:06 +02:00
implementation 'org.jetbrains:annotations-java5:21.0.1'
}