Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/tests_e2e_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,20 +183,21 @@ jobs:
- name: Record App Video
# With a little delay so the detox test below has time to spawn it, missing the first part of boot is fine
continue-on-error: true
run: nohup sh -c "sleep 30 && xcrun simctl io booted recordVideo --codec=h264 -f simulator.mp4 2>&1 &"
run: nohup sh -c "sleep 110 && xcrun simctl io booted recordVideo --codec=h264 -f simulator.mp4 2>&1 &"

- name: Create Simulator Log
# With a little delay so the detox test below has time to spawn it, missing the first part of boot is fine
# If you boot the simulator separately from detox, some other race fails and detox testee never sends ready to proxy
continue-on-error: true
run: nohup sh -c "sleep 30 && xcrun simctl spawn booted log stream --level debug --style compact > simulator.log 2>&1 &"
run: nohup sh -c "sleep 110 && xcrun simctl spawn booted log stream --level debug --style compact > simulator.log 2>&1 &"

- name: Detox Test
timeout-minutes: 50
run: yarn tests:ios:test-cover

- name: Stop App Video
if: always()
continue-on-error: true
run: killall -INT simctl

- name: Upload App Video
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ project.ext {
// Overriding Library SDK Versions
firebase: [
// Override Firebase SDK Version
bom : "33.3.0"
bom : "33.4.0"
],
],
])
Expand All @@ -305,7 +305,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the

```ruby
# Override Firebase SDK Version
$FirebaseSDKVersion = '11.2.0'
$FirebaseSDKVersion = '11.3.0'
```

Once changed, reinstall your projects pods via pod install and rebuild your project with `npx react-native run-ios`.
Expand Down
4 changes: 2 additions & 2 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
},
"sdkVersions": {
"ios": {
"firebase": "11.2.0",
"firebase": "11.3.0",
"iosTarget": "13.0",
"macosTarget": "10.15"
},
"android": {
"minSdk": 21,
"targetSdk": 34,
"compileSdk": 34,
"firebase": "33.3.0",
"firebase": "33.4.0",
"firebaseCrashlyticsGradle": "3.0.2",
"firebasePerfGradle": "1.4.2",
"gmsGoogleServicesGradle": "4.4.2",
Expand Down
Loading
Loading