| 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") |
| } |