mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00

Adding initial support for the following URL, TextEncoder, TextDecoder, atob, btoa. This also setups up a cargo workspace (rust) for future developments. iOS adds a local pod dep until we move to using a pod for the runtime dep.
8 lines
296 B
Bash
Executable File
8 lines
296 B
Bash
Executable File
#! /bin/bash
|
|
LIB_NAME="nativescriptcore"
|
|
FRAMEWORK="NativeScriptCore"
|
|
|
|
cp -r ./crates/libs/nativescript-core/include packages/core/platforms/ios/src/cpp
|
|
cp -r target/$FRAMEWORK.xcframework packages/core/platforms/ios
|
|
rm -rf target/$FRAMEWORK.xcframework
|
|
rm target/simulator_fat/lib$LIB_NAME.dylib |