-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
49 lines (41 loc) · 1.41 KB
/
build.gradle.kts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
plugins {
id("com.android.application")
kotlin("android")
}
android {
compileSdk = 32
defaultConfig {
applicationId = "io.ballerine.kmp.example.android"
minSdk = 23
targetSdk = 32
versionCode = 1
versionName = "1.0"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
}
}
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.1.1"
}
}
dependencies {
implementation(project(":shared"))
implementation("com.github.ballerine-io:ballerine-android-sdk:1.0.5")
implementation("androidx.appcompat:appcompat:1.5.0")
implementation("com.google.android.material:material:1.6.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
val compose_version = "1.2.1"
implementation ("androidx.core:core-ktx:1.8.0")
implementation ("androidx.activity:activity-compose:1.5.1")
implementation ("androidx.compose.ui:ui:$compose_version")
implementation ("androidx.compose.material:material:$compose_version")
implementation ("androidx.compose.ui:ui-tooling-preview:$compose_version")
androidTestImplementation ("androidx.compose.ui:ui-test-junit4:$compose_version")
debugImplementation ("androidx.compose.ui:ui-tooling:$compose_version")
implementation("com.google.accompanist:accompanist-permissions:0.26.0-alpha")
}