blob: 401d2bfe9ac6ba0b4bd4f86e6709b9c2ae6705c9 (
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
|
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.3.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.0")
}
|