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:
3434buildscript {
3535 dependencies {
3636 // ...
37- classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.1 '
37+ classpath 'com.google.firebase:firebase-appdistribution-gradle:4.1.0 '
3838 }
3939```
4040
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ buildscript {
6969 dependencies {
7070 // ... other dependencies
7171 // 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 '
7474 // Add me --- /\
7575 }
7676}
@@ -290,7 +290,7 @@ project.ext {
290290 // Overriding Library SDK Versions
291291 firebase: [
292292 // Override Firebase SDK Version
293- bom : "32.7.1 "
293+ bom : "32.7.2 "
294294 ],
295295 ],
296296 ])
@@ -305,7 +305,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
305305
306306``` ruby
307307# Override Firebase SDK Version
308- $FirebaseSDKVersion = ' 10.20 .0'
308+ $FirebaseSDKVersion = ' 10.21 .0'
309309```
310310
311311Once 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 {
9696 api appProject
9797 implementation platform(" com.google.firebase:firebase-bom:${ ReactNative.ext.getVersion("firebase", "bom")} " )
9898 // 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 '
100100 // TODO demonstrate how to only include this in certain build variants
101101 // - perhaps have firebase.json name the variants to include, then roll through variants here and only
102102 // 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 '
104104}
105105
106106ReactNative . shared. applyPackageVersion()
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
1919 s . social_media_url = 'http://twitter.com/invertaseio'
2020 s . ios . deployment_target = firebase_ios_target
2121 s . macos . deployment_target = firebase_macos_target
22- s . cocoapods_version = '>= 1.10.2 '
22+ s . cocoapods_version = '>= 1.12.0 '
2323 s . source_files = "ios/**/*.{h,m}"
2424
2525 # React Native dependencies
Original file line number Diff line number Diff line change 7373 },
7474 "sdkVersions" : {
7575 "ios" : {
76- "firebase" : " 10.20 .0" ,
76+ "firebase" : " 10.21 .0" ,
7777 "iosTarget" : " 11.0" ,
7878 "macosTarget" : " 10.13"
7979 },
8080 "android" : {
8181 "minSdk" : 19 ,
8282 "targetSdk" : 33 ,
8383 "compileSdk" : 33 ,
84- "firebase" : " 32.7.1 " ,
84+ "firebase" : " 32.7.2 " ,
8585 "firebaseCrashlyticsGradle" : " 2.9.9" ,
8686 "firebasePerfGradle" : " 1.4.2" ,
87- "gmsGoogleServicesGradle" : " 4.4.0 " ,
87+ "gmsGoogleServicesGradle" : " 4.4.1 " ,
8888 "playServicesAuth" : " 20.7.0"
8989 }
9090 }
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ buildscript {
138138 jcenter()
139139 }
140140 dependencies {
141- classpath 'com.google.gms:google - services :4.4 .0 '
141+ classpath 'com.google.gms:google - services :4.4 .1 '
142142 classpath("com.android.tools.build:gradle:4.1.0")
143143
144144 // 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 {
3131 mavenCentral()
3232 }
3333 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
3535 classpath(" com.android.tools.build:gradle:8.1.2" )
3636 classpath(" com.facebook.react:react-native-gradle-plugin" )
3737 classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin" )
3838 classpath ' com.google.firebase:perf-plugin:1.4.2'
3939 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 '
4141 }
4242}
4343
You can’t perform that action at this time.
0 commit comments