Skip to content

Commit 263ce75

Browse files
authored
Merge pull request #78 from patrickkabwe/chore/bump-nitro
Chore/bump nitro
2 parents 2036a81 + d7fcf88 commit 263ce75

32 files changed

Lines changed: 796 additions & 613 deletions

.github/workflows/ios-build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
- uses: actions/checkout@v4
5151
- uses: oven-sh/setup-bun@v2
5252

53+
- name: Setup Xcode
54+
uses: maxim-lobanov/setup-xcode@v1
55+
with:
56+
xcode-version: 16.4
57+
5358
- name: Install npm dependencies (bun)
5459
run: bun install
5560

@@ -93,6 +98,11 @@ jobs:
9398
- uses: actions/checkout@v4
9499
- uses: oven-sh/setup-bun@v2
95100

101+
- name: Setup Xcode
102+
uses: maxim-lobanov/setup-xcode@v1
103+
with:
104+
xcode-version: 16.4
105+
96106
- name: Install npm dependencies (bun)
97107
run: bun install
98108

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/cache@v4
3434
with:
3535
path: ~/.bun/install/cache
36-
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
36+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
3737
restore-keys: |
3838
${{ runner.os }}-bun-
3939

bun.lock

Lines changed: 117 additions & 142 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
buildscript {
22
ext {
3-
buildToolsVersion = "35.0.0"
3+
buildToolsVersion = "36.0.0"
44
minSdkVersion = 24
5-
compileSdkVersion = 35
6-
targetSdkVersion = 35
5+
compileSdkVersion = 36
6+
targetSdkVersion = 36
77
ndkVersion = "27.1.12297006"
88
kotlinVersion = "2.1.20"
99
}

example/android/gradle.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ newArchEnabled=true
3737
# Use this property to enable or disable the Hermes JS engine.
3838
# If set to false, you will be using JSC instead.
3939
hermesEnabled=true
40+
41+
# Use this property to enable edge-to-edge display support.
42+
# This allows your app to draw behind system bars for an immersive UI.
43+
# Note: Only works with ReactActivity and should not be used with custom Activity.
44+
edgeToEdgeEnabled=false

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)