File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
repositories {
3
3
google()
4
+ mavenCentral()
4
5
}
5
6
dependencies {
6
7
classpath " androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
8
+
9
+ // Firebase
10
+ classpath ' com.google.gms:google-services:4.3.10'
7
11
}
8
12
}
9
13
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ plugins {
4
4
id ' androidx.navigation.safeargs'
5
5
id ' kotlin-kapt'
6
6
id ' com.google.dagger.hilt.android'
7
+ id ' com.google.gms.google-services'
7
8
}
8
9
9
10
Properties properties = new Properties ()
@@ -80,4 +81,15 @@ dependencies {
80
81
81
82
// Splash
82
83
implementation ' androidx.core:core-splashscreen:1.0.0'
84
+
85
+ // Firebase
86
+ // Import the Firebase BoM
87
+ implementation platform(' com.google.firebase:firebase-bom:31.0.2' )
88
+
89
+ // When using the BoM, don't specify versions in Firebase dependencies
90
+ implementation ' com.google.firebase:firebase-analytics-ktx'
91
+
92
+ // Add the dependencies for any other desired Firebase products
93
+ // https://firebase.google.com/docs/android/setup#available-libraries
94
+
83
95
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : 3 ,
3
+ "artifactType" : {
4
+ "type" : " APK" ,
5
+ "kind" : " Directory"
6
+ },
7
+ "applicationId" : " com.stop" ,
8
+ "variantName" : " debug" ,
9
+ "elements" : [
10
+ {
11
+ "type" : " SINGLE" ,
12
+ "filters" : [],
13
+ "attributes" : [],
14
+ "versionCode" : 1 ,
15
+ "versionName" : " 1.0" ,
16
+ "outputFile" : " presentation-debug.apk"
17
+ }
18
+ ],
19
+ "elementType" : " File"
20
+ }
You can’t perform that action at this time.
0 commit comments