File tree Expand file tree Collapse file tree 8 files changed +148
-148
lines changed
plugin/__tests__/__snapshots__ Expand file tree Collapse file tree 8 files changed +148
-148
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:4.0.1 '
37
+ classpath 'com.google.firebase:firebase-appdistribution-gradle:4.1.0 '
38
38
}
39
39
```
40
40
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ buildscript {
69
69
dependencies {
70
70
// ... other dependencies
71
71
// NOTE: if you are on react-native 0.71 or below, you must not update
72
- // the google-services plugin past version 4.3.15
73
- classpath 'com.google.gms:google-services:4.4.0 '
72
+ // the google-services plugin past version 4.3.15 as it requires gradle >= 7.3.0
73
+ classpath 'com.google.gms:google-services:4.4.1 '
74
74
// Add me --- /\
75
75
}
76
76
}
@@ -290,7 +290,7 @@ project.ext {
290
290
// Overriding Library SDK Versions
291
291
firebase: [
292
292
// Override Firebase SDK Version
293
- bom : "32.7.1 "
293
+ bom : "32.7.2 "
294
294
],
295
295
],
296
296
])
@@ -305,7 +305,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
305
305
306
306
``` ruby
307
307
# Override Firebase SDK Version
308
- $FirebaseSDKVersion = ' 10.20 .0'
308
+ $FirebaseSDKVersion = ' 10.21 .0'
309
309
```
310
310
311
311
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 @@ -96,11 +96,11 @@ dependencies {
96
96
api appProject
97
97
implementation platform(" com.google.firebase:firebase-bom:${ ReactNative.ext.getVersion("firebase", "bom")} " )
98
98
// TODO remove the specific version once it is out of beta and participates in bom versioning
99
- implementation ' com.google.firebase:firebase-appdistribution-api:16.0.0-beta11 '
99
+ implementation ' com.google.firebase:firebase-appdistribution-api:16.0.0-beta12 '
100
100
// TODO demonstrate how to only include this in certain build variants
101
101
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
102
102
// add the dependency to variants that match? Or... (PRs welcome...)
103
- // implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta11 '
103
+ // implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta12 '
104
104
}
105
105
106
106
ReactNative . shared. applyPackageVersion()
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
19
19
s . social_media_url = 'http://twitter.com/invertaseio'
20
20
s . ios . deployment_target = firebase_ios_target
21
21
s . macos . deployment_target = firebase_macos_target
22
- s . cocoapods_version = '>= 1.10.2 '
22
+ s . cocoapods_version = '>= 1.12.0 '
23
23
s . source_files = "ios/**/*.{h,m}"
24
24
25
25
# React Native dependencies
Original file line number Diff line number Diff line change 73
73
},
74
74
"sdkVersions" : {
75
75
"ios" : {
76
- "firebase" : " 10.20 .0" ,
76
+ "firebase" : " 10.21 .0" ,
77
77
"iosTarget" : " 11.0" ,
78
78
"macosTarget" : " 10.13"
79
79
},
80
80
"android" : {
81
81
"minSdk" : 19 ,
82
82
"targetSdk" : 33 ,
83
83
"compileSdk" : 33 ,
84
- "firebase" : " 32.7.1 " ,
84
+ "firebase" : " 32.7.2 " ,
85
85
"firebaseCrashlyticsGradle" : " 2.9.9" ,
86
86
"firebasePerfGradle" : " 1.4.2" ,
87
- "gmsGoogleServicesGradle" : " 4.4.0 " ,
87
+ "gmsGoogleServicesGradle" : " 4.4.1 " ,
88
88
"playServicesAuth" : " 20.7.0"
89
89
}
90
90
}
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ buildscript {
138
138
jcenter()
139
139
}
140
140
dependencies {
141
- classpath 'com.google.gms:google - services :4.4 .0 '
141
+ classpath 'com.google.gms:google - services :4.4 .1 '
142
142
classpath("com.android.tools.build:gradle:4.1.0")
143
143
144
144
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ buildscript {
31
31
mavenCentral()
32
32
}
33
33
dependencies {
34
- classpath ' com.google.gms:google-services:4.4.0 ' // https://developers.google.com/android/guides/google-services-plugin
34
+ classpath ' com.google.gms:google-services:4.4.1 ' // https://developers.google.com/android/guides/google-services-plugin
35
35
classpath(" com.android.tools.build:gradle:8.1.2" )
36
36
classpath(" com.facebook.react:react-native-gradle-plugin" )
37
37
classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin" )
38
38
classpath ' com.google.firebase:perf-plugin:1.4.2'
39
39
classpath ' com.google.firebase:firebase-crashlytics-gradle:2.9.9'
40
- classpath ' com.google.firebase:firebase-appdistribution-gradle:4.0.1 '
40
+ classpath ' com.google.firebase:firebase-appdistribution-gradle:4.1.0 '
41
41
}
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments