mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-02-05 12:42:34 -05:00
30 lines
636 B
Groovy
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
|
|
}
|