Skip to content

Commit

Permalink
clustering demo
Browse files Browse the repository at this point in the history
  • Loading branch information
sargunv committed Nov 25, 2024
1 parent 3664827 commit b3e16ee
Show file tree
Hide file tree
Showing 11 changed files with 98,517 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .fleet/run.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"name": "Android-App",
"type": "android-app",
"workingDir": "$PROJECT_DIR$",
"module": "root.demo-app.main"
"module": "maplibre-compose.demo-app.main"
},
{
"name": "Reformat",
Expand Down
10 changes: 9 additions & 1 deletion demo-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,18 @@ kotlin {
implementation(compose.runtime)
implementation(compose.ui)
implementation(libs.navigation.compose)
implementation(libs.ktor.client.core)
implementation(libs.ktor.client.content.negotiation)
implementation(libs.ktor.serialization.kotlinx.json)
implementation(project(":lib:maplibre-compose"))
}

androidMain.dependencies { implementation(libs.androidx.activity.compose) }
androidMain.dependencies {
implementation(libs.androidx.activity.compose)
implementation(libs.ktor.client.okhttp)
}

iosMain.dependencies { implementation(libs.ktor.client.darwin) }

commonTest.dependencies {
implementation(kotlin("test"))
Expand Down
Loading

0 comments on commit b3e16ee

Please sign in to comment.