55 lines
1 KiB
Cheetah
55 lines
1 KiB
Cheetah
group = "{{androidIdentifier}}"
|
|
version = "1.0"
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:{{agpVersion}}")
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
android {
|
|
namespace = "{{androidIdentifier}}"
|
|
|
|
compileSdk = {{compileSdkVersion}}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdk = {{minSdkVersion}}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.all {
|
|
it.outputs.upToDateWhen { false }
|
|
|
|
it.testLogging {
|
|
events("passed", "skipped", "failed", "standardOut", "standardError")
|
|
showStandardStreams = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("org.mockito:mockito-core:5.0.0")
|
|
}
|