feat(android): init basic maps

This commit is contained in:
LavaDesu 2025-04-13 01:27:49 +10:00
parent aebc802b88
commit 89ffc02e1d
Signed by: cilly
GPG key ID: 6500251E087653C9
8 changed files with 36 additions and 17 deletions

View file

@ -7,6 +7,7 @@ plugins {
alias(libs.plugins.androidApplication)
alias(libs.plugins.composeMultiplatform)
alias(libs.plugins.composeCompiler)
alias(libs.plugins.secretsGradle)
}
kotlin {
@ -33,6 +34,8 @@ kotlin {
androidMain.dependencies {
implementation(compose.preview)
implementation(libs.androidx.activity.compose)
implementation(libs.play.services.maps)
implementation(libs.maps.compose)
}
commonMain.dependencies {
implementation(compose.runtime)
@ -79,3 +82,6 @@ dependencies {
debugImplementation(compose.uiTooling)
}
secrets {
propertiesFileName = "secrets.properties"
}