Files
fdroidclient/libs/sharedTest/build.gradle
Torsten Grote 1b7a55b043 Upgrade all the things!
Use version catalog now and upgrade ktlint as well.
2024-10-17 17:41:12 +00:00

30 lines
636 B
Groovy

plugins {
id 'kotlin-android'
id 'com.android.library'
}
kotlin {
jvmToolchain(17)
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
// not really an Android library, but index is not publishing for JVM at the moment
android {
namespace 'org.fdroid.test'
compileSdk libs.versions.compileSdk.get().toInteger()
defaultConfig {
minSdkVersion 21
}
}
dependencies {
implementation project(":libs:download")
implementation project(":libs:index")
implementation libs.kotlin.test
implementation libs.kotlinx.serialization.json
}