blob: ccbc6c8ec9feb23829ef1019571ba89e76225d7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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")
}
|