group = "eu.weblibre.locale_resolver" version = "1.0-SNAPSHOT" buildscript { repositories { google() mavenCentral() } dependencies { classpath("com.android.tools.build:gradle:9.2.1") } } allprojects { repositories { google() mavenCentral() } } apply plugin: "com.android.library" android { namespace = "eu.weblibre.locale_resolver" compileSdk = 37 compileOptions { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } sourceSets { main.java.srcDirs += "src/main/kotlin" test.java.srcDirs += "src/test/kotlin" } defaultConfig { minSdk = 24 } dependencies { testImplementation("org.jetbrains.kotlin:kotlin-test") testImplementation("org.mockito:mockito-core:5.23.0") } testOptions { unitTests.all { useJUnitPlatform() testLogging { events "passed", "skipped", "failed", "standardOut", "standardError" outputs.upToDateWhen {false} showStandardStreams = true } } } } kotlin { compilerOptions { jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11 } }