Merge remote-tracking branch 'origin/main'
# Conflicts: # gradle/libs.versions.toml
This commit is contained in:
@@ -12,12 +12,19 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "com.example.snapandsolve"
|
||||
minSdk = 27
|
||||
minSdk = 28
|
||||
targetSdk = 36
|
||||
versionCode = 1
|
||||
versionName = "1.0"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
val properties = org.jetbrains.kotlin.konan.properties.Properties()
|
||||
val propertiesFile = rootProject.file("local.properties")
|
||||
if (propertiesFile.exists()){
|
||||
propertiesFile.inputStream().use { properties.load(it) }
|
||||
}
|
||||
|
||||
buildConfigField("String", "ARCGIS_TOKEN","\"${properties.getProperty("arcgis.token","")}\"")
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
@@ -38,6 +45,7 @@ android {
|
||||
}
|
||||
buildFeatures {
|
||||
compose = true
|
||||
buildConfig = true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -59,4 +67,11 @@ dependencies {
|
||||
debugImplementation(libs.androidx.compose.ui.test.manifest)
|
||||
implementation("androidx.compose.material:material-icons-core")
|
||||
implementation("androidx.compose.material:material-icons-extended")
|
||||
|
||||
// ArcGIS Maps for Kotlin - SDK dependency
|
||||
implementation(libs.arcgis.maps.kotlin)
|
||||
// Toolkit dependencies
|
||||
implementation(platform(libs.arcgis.maps.kotlin.toolkit.bom))
|
||||
implementation(libs.arcgis.maps.kotlin.toolkit.geoview.compose)
|
||||
implementation(libs.arcgis.maps.kotlin.toolkit.authentication)
|
||||
}
|
||||
Reference in New Issue
Block a user