Skip to content

Commit bb364f9

Browse files
authored
feat(visionos): support for xros platform (#235)
1 parent dc3c76f commit bb364f9

File tree

95 files changed

+1479
-195
lines changed

Some content is hidden

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

95 files changed

+1479
-195
lines changed

.github/workflows/npm_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo NPM_VERSION=$NPM_VERSION >> $GITHUB_OUTPUT
6060
echo NPM_TAG=$NPM_TAG >> $GITHUB_OUTPUT
6161
- name: Build
62-
run: npm run build
62+
run: npm run build-ios
6363
- name: Upload npm package artifact
6464
uses: actions/upload-artifact@v3
6565
with:

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
echo NPM_VERSION=$NPM_VERSION >> $GITHUB_ENV
4444
npm version $NPM_VERSION --no-git-tag-version
4545
- name: Build
46-
run: npm run build
46+
run: npm run build-ios
4747
- name: Upload npm package artifact
4848
uses: actions/upload-artifact@v3
4949
with:

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,9 @@ v8_build
5050
# v8 build files...
5151
.gclient*
5252
.cipd/
53+
54+
# project template
55+
/project-template-ios/.build_env_vars.sh
56+
/project-template-ios/__PROJECT_NAME__.xcodeproj/project.xcworkspace/xcshareddata/
57+
/project-template-vision/.build_env_vars.sh
58+
/project-template-vision/__PROJECT_NAME__.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

NativeScript/NativeScript-Prefix.pch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef NativeScript_Prefix_pch
22
#define NativeScript_Prefix_pch
33

4-
#define NATIVESCRIPT_VERSION "8.6.1"
4+
#define NATIVESCRIPT_VERSION "8.7.0-rc.1"
55

66
#ifdef DEBUG
77
#define SIZEOF_OFF_T 8

NativeScript/inspector/utils.mm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
}
2020

2121
NSString* fileExtension = [fullPath pathExtension];
22+
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
2223
CFStringRef uti = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)fileExtension, nil);
2324
if (uti == nil) {
2425
return std::string();
399 KB
Binary file not shown.
154 KB
Binary file not shown.
1.29 KB
Binary file not shown.

NativeScript/lib/arm64-xros/libffi.a

108 KB
Binary file not shown.
30 MB
Binary file not shown.

0 commit comments

Comments
 (0)