Skip to content

Commit b2d4ac0

Browse files
davidliuResonious
authored andcommitted
chore: update dev react-native to 0.82 (livekit#299)
1 parent 10d5ed1 commit b2d4ac0

126 files changed

Lines changed: 14944 additions & 11807 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/native_build.yaml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
java-version: '17'
2222
distribution: 'adopt'
2323

24-
- uses: actions/setup-node@v4
24+
- uses: actions/setup-node@v6
2525
with:
26-
node-version: '18.x'
26+
node-version: 22
2727
cache: 'yarn'
2828
cache-dependency-path: '**/yarn.lock'
2929

@@ -57,9 +57,9 @@ jobs:
5757
steps:
5858
- uses: actions/checkout@v4
5959

60-
- uses: actions/setup-node@v4
60+
- uses: actions/setup-node@v6
6161
with:
62-
node-version: '18.x'
62+
node-version: 22
6363
cache: 'yarn'
6464
cache-dependency-path: '**/yarn.lock'
6565

@@ -74,6 +74,14 @@ jobs:
7474
restore-keys: |
7575
${{ runner.os }}-node-
7676
77+
- name: Cache gem bundle
78+
uses: actions/cache@v4
79+
with:
80+
path: ./ci/vendor
81+
key: ${{ runner.os }}-gembundle-${{ hashFiles('**/Gemfile.lock') }}
82+
restore-keys: |
83+
${{ runner.os }}-gembundle-
84+
7785
- name: Cache cocoapods
7886
uses: actions/cache@v4
7987
with:
@@ -92,8 +100,12 @@ jobs:
92100
yarn install
93101
cd ci/
94102
yarn
95-
cd ios/
96-
pod install
103+
- name: Pods
104+
run: |
105+
cd ci/ios/
106+
bundle install
107+
bundle exec pod update hermes-engine --no-repo-update
108+
bundle exec pod install --verbose
97109
98110
- name: Compile iOS
99111
working-directory: ./ci/ios/
@@ -103,6 +115,7 @@ jobs:
103115
-scheme ci \
104116
-destination generic/platform=iOS \
105117
-configuration Debug \
118+
-verbose \
106119
CODE_SIGN_IDENTITY="" \
107120
CODE_SIGNING_REQUIRED=NO \
108121
CODE_SIGN_ENTITLEMENTS="" \

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18-
- uses: actions/setup-node@v4
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: '18.x'
20+
node-version: 22
2121

2222
- uses: actions/cache@v4
2323
with:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ android.iml
4444
.cxx/
4545
*.keystore
4646
!debug.keystore
47+
.kotlin/
4748

4849
# Cocoapods
4950
#
@@ -84,4 +85,4 @@ lib/
8485
!**/.yarn/plugins
8586
!**/.yarn/releases
8687
!**/.yarn/sdks
87-
!**/.yarn/versions
88+
!**/.yarn/versions

android/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ buildscript {
55
repositories {
66
google()
77
mavenCentral()
8-
jcenter()
98
}
109

1110
dependencies {
@@ -53,7 +52,6 @@ android {
5352

5453
repositories {
5554
mavenCentral()
56-
jcenter()
5755
google()
5856
maven { url 'https://jitpack.io' }
5957

@@ -130,7 +128,7 @@ dependencies {
130128
api 'com.facebook.react:react-native:+'
131129
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
132130
api 'com.github.davidliu:audioswitch:89582c47c9a04c62f90aa5e57251af4800a62c9a'
133-
api 'io.github.webrtc-sdk:android:125.6422.02'
131+
api 'io.github.webrtc-sdk:android:137.7151.04'
134132
implementation "io.livekit:noise:2.0.0"
135133
implementation project(':livekit_react-native-webrtc')
136134
implementation "androidx.annotation:annotation:1.9.1"

babel.config.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ci/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ local.properties
3333
.cxx/
3434
*.keystore
3535
!debug.keystore
36+
.kotlin/
3637

3738
# node.js
3839
#

ci/.prettierrc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module.exports = {
22
arrowParens: 'avoid',
3-
bracketSameLine: true,
4-
bracketSpacing: false,
53
singleQuote: true,
64
trailingComma: 'all',
75
};

0 commit comments

Comments
 (0)