19 lines
372 B
Text
19 lines
372 B
Text
|
|
plugins {
|
||
|
|
id("breezy.library")
|
||
|
|
kotlin("android")
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "com.google.maps.android"
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
testImplementation(libs.bundles.test)
|
||
|
|
testRuntimeOnly(libs.junit.platform)
|
||
|
|
}
|