plugins { id("com.android.application") kotlin("android") } android { compileSdk = 31 defaultConfig { applicationId = "mx.trackermap.TrackerMap.android" minSdk = 21 targetSdk = 31 versionCode = 1 versionName = "1.0" } buildTypes { getByName("release") { isMinifyEnabled = false } } } dependencies { implementation(project(":shared")) implementation("com.google.android.material:material:1.4.0") implementation("androidx.appcompat:appcompat:1.4.0") implementation("androidx.constraintlayout:constraintlayout:2.1.2") implementation("com.squareup.okhttp3:okhttp:3.14.2") implementation(group = "", name = "WhirlyGlobeMaply", ext = "aar") }