-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 808 Bytes
/
build.gradle
File metadata and controls
33 lines (27 loc) · 808 Bytes
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
plugins {
id("com.android.application")
}
android {
compileSdk = 36
namespace = "com.didomi.sampleappjava"
defaultConfig {
applicationId = "com.didomi.sampleappjava"
minSdk = 23
targetSdk = 36
versionCode = 1
versionName = "1.0"
}
buildTypes {
release {
minifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
}
}
dependencies {
implementation("io.didomi.sdk:android:2.31.0")
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("androidx.lifecycle:lifecycle-viewmodel:2.9.4")
implementation("com.google.android.gms:play-services-ads:24.6.0")
implementation("com.google.android.material:material:1.13.0")
}