-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
53 lines (44 loc) · 1.38 KB
/
build.gradle.kts
File metadata and controls
53 lines (44 loc) · 1.38 KB
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
50
51
52
53
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
}
android {
namespace = "com.entrust.identity.verification.sdk.sampleapp"
compileSdk = 36
defaultConfig {
applicationId = "com.entrust.identity.verification.sdk.sampleapp"
minSdk = 24
targetSdk = 36
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
create("release") {
// Using debug keystore for sample app convenience
storeFile = file("${rootProject.projectDir}/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
}
dependencies {
// Core AndroidX
implementation(libs.androidx.core)
implementation(libs.androidx.appcompat)
implementation(libs.androidx.lifecycle.runtime)
implementation(libs.entrust.idv.core)
implementation(libs.entrust.idv.welcome)
implementation(libs.entrust.idv.face.photo)
implementation(libs.entrust.idv.face.motion)
implementation(libs.entrust.idv.document)
implementation(libs.entrust.idv.nfc)
}