mirror of
https://github.com/status-im/react-native.git
synced 2025-01-12 10:34:57 +00:00
044b399e65
Summary:
I found that android support library 27.x (874cca1ac2
) requires compileSdkVersion to be 27. Also found that many FB projects use SDK 27.
Pull Request resolved: https://github.com/facebook/react-native/pull/20777
Differential Revision: D9478431
Pulled By: hramos
fbshipit-source-id: ca100f6b5b39e7d112926124423f9510a0efc291
35 lines
942 B
Bash
35 lines
942 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=27.0.3
|
|
# Android API Level we build with
|
|
export ANDROID_SDK_BUILD_API_LEVEL="27"
|
|
# 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="11.4"
|
|
export IOS_DEVICE="iPhone 5s"
|
|
|
|
export SCHEME="RNTester"
|
|
export SDK="iphonesimulator${IOS_TARGET_OS}"
|
|
export DESTINATION="platform=iOS Simulator,OS=${IOS_TARGET_OS},name=${IOS_DEVICE}"
|
|
|
|
## 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
|
|
|