File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-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 @@ -5,6 +5,7 @@ plugins {
5
5
id ' kotlin-kapt'
6
6
id ' kotlin-parcelize'
7
7
id ' com.google.dagger.hilt.android'
8
+ id ' com.google.gms.google-services'
8
9
}
9
10
10
11
Properties properties = new Properties ()
@@ -82,6 +83,16 @@ dependencies {
82
83
// Splash
83
84
implementation ' androidx.core:core-splashscreen:1.0.0'
84
85
86
+ // Firebase
87
+ // Import the Firebase BoM
88
+ implementation platform(' com.google.firebase:firebase-bom:31.0.2' )
89
+
90
+ // When using the BoM, don't specify versions in Firebase dependencies
91
+ implementation ' com.google.firebase:firebase-analytics-ktx'
92
+
93
+ // Add the dependencies for any other desired Firebase products
94
+ // https://firebase.google.com/docs/android/setup#available-libraries
95
+
85
96
// LifeCycle Service
86
97
implementation ' androidx.lifecycle:lifecycle-service:2.5.1'
87
98
}
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