File tree Expand file tree Collapse file tree 8 files changed +12
-10
lines changed
perf/plugin/__tests__/__snapshots__ Expand file tree Collapse file tree 8 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Add the plugin to your `/android/build.gradle` file as a dependency:
34
34
buildscript {
35
35
dependencies {
36
36
// ...
37
- classpath 'com.google.firebase:firebase-appdistribution-gradle:3.0.2 '
37
+ classpath 'com.google.firebase:firebase-appdistribution-gradle:3.0.3 '
38
38
}
39
39
```
40
40
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ project.ext {
215
215
// Overriding Library SDK Versions
216
216
firebase: [
217
217
// Override Firebase SDK Version
218
- bom : "30.5 .0"
218
+ bom : "31.0 .0"
219
219
],
220
220
],
221
221
])
@@ -230,7 +230,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
230
230
231
231
``` ruby
232
232
# Override Firebase SDK Version
233
- $FirebaseSDKVersion = ' 9.6 .0'
233
+ $FirebaseSDKVersion = ' 10.0 .0'
234
234
```
235
235
236
236
Once changed, reinstall your projects pods via pod install and rebuild your project with ` npx react-native run-ios ` .
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Add the plugin to your `/android/build.gradle` file as a dependency:
38
38
buildscript {
39
39
dependencies {
40
40
// ...
41
- classpath 'com.google.firebase:perf-plugin:1.4.1 '
41
+ classpath 'com.google.firebase:perf-plugin:1.4.2 '
42
42
}
43
43
```
44
44
Original file line number Diff line number Diff line change @@ -87,11 +87,11 @@ dependencies {
87
87
api appProject
88
88
implementation platform(" com.google.firebase:firebase-bom:${ ReactNative.ext.getVersion("firebase", "bom")} " )
89
89
// TODO remove the specific version once it is out of beta and participates in bom versioning
90
- implementation ' com.google.firebase:firebase-appdistribution-api:16.0.0-beta04 '
90
+ implementation ' com.google.firebase:firebase-appdistribution-api:16.0.0-beta05 '
91
91
// TODO demonstrate how to only include this in certain build variants
92
92
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
93
93
// add the dependency to variants that match? Or... (PRs welcome...)
94
- // implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta04 '
94
+ // implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta05 '
95
95
}
96
96
97
97
ReactNative . shared. applyPackageVersion()
Original file line number Diff line number Diff line change 73
73
"minSdk" : 19 ,
74
74
"targetSdk" : 33 ,
75
75
"compileSdk" : 33 ,
76
- "firebase" : " 30.5 .0" ,
76
+ "firebase" : " 31.0 .0" ,
77
77
"firebaseCrashlyticsGradle" : " 2.9.2" ,
78
- "firebasePerfGradle" : " 1.4.1 " ,
78
+ "firebasePerfGradle" : " 1.4.2 " ,
79
79
"gmsGoogleServicesGradle" : " 4.3.14" ,
80
80
"playServicesAuth" : " 20.3.0"
81
81
}
Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ dependencies {
116
116
api appProject
117
117
implementation platform(" com.google.firebase:firebase-bom:${ ReactNative.ext.getVersion("firebase", "bom")} " )
118
118
implementation " com.google.firebase:firebase-messaging"
119
+ // temporary workaround: https://github.com/firebase/firebase-android-sdk/issues/4206
120
+ implementation ' com.google.firebase:firebase-iid:21.1.0'
119
121
}
120
122
121
123
ReactNative . shared. applyPackageVersion()
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ buildscript {
15
15
jcenter()
16
16
}
17
17
dependencies {
18
- classpath 'com.google.firebase:perf - plugin :1.4 .1 '
18
+ classpath 'com.google.firebase:perf - plugin :1.4 .2 '
19
19
classpath("com.android.tools.build:gradle:4.1.0")
20
20
21
21
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ buildscript {
33
33
classpath ' com.google.gms:google-services:4.3.14' // https://developers.google.com/android/guides/google-services-plugin
34
34
classpath ' com.android.tools.build:gradle:7.0.4'
35
35
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
36
- classpath ' com.google.firebase:perf-plugin:1.4.1 '
36
+ classpath ' com.google.firebase:perf-plugin:1.4.2 '
37
37
classpath ' com.google.firebase:firebase-crashlytics-gradle:2.9.2'
38
38
classpath ' com.google.firebase:firebase-appdistribution-gradle:3.0.3'
39
39
}
You can’t perform that action at this time.
0 commit comments