-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (28 loc) · 875 Bytes
/
build.gradle
File metadata and controls
30 lines (28 loc) · 875 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
apply plugin: 'com.android.application'
android {
namespace 'com.google.example.gms.nativeadvancedexample'
compileSdkVersion 35
defaultConfig {
applicationId "com.google.example.gms.nativeadvancedexample"
minSdkVersion 23
multiDexEnabled true
targetSdkVersion 35
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.gms:play-services-ads:24.9.0'
implementation 'com.google.android.material:material:1.13.0'
implementation 'com.google.android.ump:user-messaging-platform:4.0.0'
}