mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 16:06:08 +00:00
Bumps [junit](https://github.com/junit-team/junit4) from 4.13.1 to 4.13.2. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.13.1.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.13.1...r4.13.2) Signed-off-by: dependabot[bot] <support@github.com>
41 lines
985 B
Groovy
41 lines
985 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
dependencies {
|
|
api 'com.squareup.okhttp3:okhttp:4.6.0'
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
|
|
api 'com.gitlab.ownclouders:dav4android:oc_support_2.1.5'
|
|
api 'com.github.AppDevNext.Logcat:LogcatCore:2.2.2'
|
|
|
|
// Moshi
|
|
implementation ("com.squareup.moshi:moshi-kotlin:$moshiVersion") {
|
|
exclude module: "kotlin-reflect"
|
|
}
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshiVersion"
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
|
|
versionCode = 10000900
|
|
versionName = "1.0.9"
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
ignoreWarnings true
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|