Commit 23dcff8 1 parent 32a118a commit 23dcff8 Copy full SHA for 23dcff8
File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 6
6
/captures
7
7
8
8
signingconfig.properties
9
- * .keystore
9
+ * .keystore
10
+ google-services.json
Original file line number Diff line number Diff line change @@ -56,8 +56,18 @@ dependencies {
56
56
implementation project(' :Spectaculum-Effect-FlowAbs' )
57
57
implementation project(' :Spectaculum-Effect-QrMarker' )
58
58
implementation project(' :Spectaculum-Effect-Immersive' )
59
+ implementation platform(' com.google.firebase:firebase-bom:32.7.2' )
60
+ implementation ' com.google.firebase:firebase-crashlytics'
59
61
}
60
62
61
63
ext. isLibrary = false
62
64
apply from : " ../gitversioning.gradle"
63
65
apply from : " signingconfig.gradle"
66
+
67
+ def firebaseConfigFile = file(" google-services.json" );
68
+ if (! firebaseConfigFile. exists()) {
69
+ project. logger. error(" Firebase config file for Crashlytics not found at ${ firebaseConfigFile.absolutePath} . Please download the file from the Firebase Console and put it there." )
70
+ }
71
+
72
+ apply plugin : ' com.google.gms.google-services'
73
+ apply plugin : ' com.google.firebase.crashlytics'
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ buildscript {
8
8
}
9
9
dependencies {
10
10
classpath ' com.android.tools.build:gradle:8.2.2'
11
+ classpath ' com.google.gms:google-services:4.4.1'
12
+ classpath ' com.google.firebase:firebase-crashlytics-gradle:2.9.9'
11
13
12
14
// NOTE: Do not place your application dependencies here; they belong
13
15
// in the individual module build.gradle files
You can’t perform that action at this time.
0 commit comments