-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5088f5f
commit 5662a39
Showing
64 changed files
with
1,721 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
!<arch> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+117 KB
NativeScript/lib/arm64-appletvsimulator/libinspector_string_conversions.a
Binary file not shown.
Binary file added
BIN
+348 KB
NativeScript/lib/arm64-appletvsimulator/libtorque_generated_definitions.a
Binary file not shown.
Binary file added
BIN
+12.7 MB
NativeScript/lib/arm64-appletvsimulator/libtorque_generated_initializers.a
Binary file not shown.
Binary file added
BIN
+17.1 MB
NativeScript/lib/arm64-appletvsimulator/libv8_base_without_compiler.a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions
1
NativeScript/lib/arm64-appletvsimulator/libv8_heap_base_headers.a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
!<arch> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
rm -rf ./dist | ||
./update_version.sh | ||
./build_metadata_generator.sh | ||
./build_nativescript.sh --no-catalyst --no-iphone --no-sim --no-xr | ||
./build_tklivesync.sh --no-catalyst --no-iphone --no-sim --no-xr | ||
./prepare_dSYMs.sh | ||
./build_npm_tvos.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
set -e | ||
source "$(dirname "$0")/build_utils.sh" | ||
|
||
checkpoint "Preparing npm package for tvOS..." | ||
OUTPUT_DIR="dist/npm" | ||
rm -rf "$OUTPUT_DIR" | ||
mkdir -p "$OUTPUT_DIR" | ||
mkdir -p "$OUTPUT_DIR/framework" | ||
cp ./package.json "$OUTPUT_DIR" | ||
|
||
cp -r "./project-template-ios/" "$OUTPUT_DIR/framework" | ||
|
||
cp -r "dist/NativeScript.xcframework" "$OUTPUT_DIR/framework/internal" | ||
cp -r "dist/TKLiveSync.xcframework" "$OUTPUT_DIR/framework/internal" | ||
|
||
mkdir -p "$OUTPUT_DIR/framework/internal/metadata-generator-x86_64" | ||
cp -r "metadata-generator/dist/x86_64/." "$OUTPUT_DIR/framework/internal/metadata-generator-x86_64" | ||
|
||
mkdir -p "$OUTPUT_DIR/framework/internal/metadata-generator-arm64" | ||
cp -r "metadata-generator/dist/arm64/." "$OUTPUT_DIR/framework/internal/metadata-generator-arm64" | ||
|
||
# Add xcframeworks to .zip (NPM modules do not support symlinks, unzipping is done by {N} CLI) | ||
( | ||
set -e | ||
cd $OUTPUT_DIR/framework/internal | ||
zip -qr --symlinks XCFrameworks.zip *.xcframework | ||
rm -rf *.xcframework | ||
) | ||
|
||
pushd "$OUTPUT_DIR" | ||
npm pack | ||
mv *.tgz ../ | ||
popd | ||
|
||
checkpoint "npm package created." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.