-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (49 loc) · 1.99 KB
/
Copy pathbuild.gradle
File metadata and controls
63 lines (49 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.gms.google-services'
}
check.dependsOn 'assembleDebugAndroidTest'
android {
namespace 'com.google.samples.quickstart.config'
compileSdkVersion 33
defaultConfig {
applicationId "com.google.samples.quickstart.config"
minSdkVersion 19
targetSdkVersion 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding = true
}
}
dependencies {
implementation project(":internal:lintchecks")
implementation project(":internal:chooserx")
implementation 'com.google.android.material:material:1.7.0'
// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:31.2.0')
// Firebase Remote Config (Java)
implementation 'com.google.firebase:firebase-config:21.2.1'
// Firebase Remote Config (Kotlin)
implementation 'com.google.firebase:firebase-config-ktx'
// For an optimal experience using Remote Config, add the Firebase SDK
// for Google Analytics. This is recommended, but not required.
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-core:21.1.1'
implementation 'com.google.firebase:firebase-annotations:16.2.0'
implementation 'com.google.firebase:firebase-installations-interop:17.1.0'
implementation 'com.google.firebase:firebase-installations:17.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
}