mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5cd0c8a4d2
Summary: The latest xcode version removed iPhone 6s, so we need to bump to the latest simulator listed that has 3d touch. ## Changelog [General] [Fix] - Bump e2e simulator version Pull Request resolved: https://github.com/facebook/react-native/pull/27733 Test Plan: - `yarn build-ios-e2e && yarn test-ios-e2e ` Reviewed By: hramos, sammy-SC Differential Revision: D19345576 Pulled By: rickhanlonii fbshipit-source-id: 428cb83ccb899409e972551f18df580174adee91
31 lines
816 B
Bash
31 lines
816 B
Bash
# These should match the recommended versions listed in
|
|
# https://facebook.github.io/react-native/docs/getting-started.html
|
|
|
|
|
|
## ANDROID ##
|
|
# Android SDK Build Tools revision
|
|
export ANDROID_SDK_BUILD_TOOLS_REVISION=28.0.3
|
|
# Android API Level we build with
|
|
export ANDROID_SDK_BUILD_API_LEVEL="28"
|
|
# Google APIs for Android level
|
|
export ANDROID_GOOGLE_API_LEVEL="23"
|
|
# Minimum Android API Level we target
|
|
export ANDROID_SDK_TARGET_API_LEVEL="19"
|
|
# Android Virtual Device name
|
|
export AVD_NAME="testAVD"
|
|
# ABI to use in Android Virtual Device
|
|
export AVD_ABI=x86
|
|
|
|
## IOS ##
|
|
export IOS_TARGET_OS="13.3"
|
|
export IOS_DEVICE="iPhone 8"
|
|
export TVOS_DEVICE="Apple TV"
|
|
|
|
## CI OVERRIDES ##
|
|
# Values to override when running in CI
|
|
# $CI is set by Circle CI
|
|
if [ $CI ]; then
|
|
# Use ARM on Circle CI
|
|
export AVD_ABI=armeabi-v7a
|
|
fi
|