mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
c92ad5f6ae
Reviewed By: shergin Differential Revision: D4333546 fbshipit-source-id: 8655070e81dbb62a80ab1f00a43ef6c2d9654618
18 lines
371 B
Bash
Executable File
18 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname $SCRIPTS)
|
|
|
|
cd $ROOT
|
|
|
|
XCODE_PROJECT="Examples/UIExplorer/UIExplorer.xcodeproj"
|
|
XCODE_SCHEME="UIExplorer-tvOS"
|
|
XCODE_SDK="appletvsimulator"
|
|
if [ -z ${XCODE_DESTINATION+x} ]; then
|
|
XCODE_DESTINATION="platform=tvOS Simulator,name=Apple TV 1080p,OS=10.0"
|
|
fi
|
|
|
|
. ./scripts/objc-test.sh
|