forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tests.env
37 lines (32 loc) · 1.08 KB
/
.tests.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# These should match the recommended versions listed in
# https://reactnative.dev/docs/environment-setup
## ANDROID ##
# Android SDK Build Tools revision
export ANDROID_SDK_BUILD_TOOLS_REVISION=31.0.0
# Android API Level we build with
export ANDROID_SDK_BUILD_API_LEVEL="31"
# Google APIs for Android level
export ANDROID_GOOGLE_API_LEVEL="23"
# Minimum Android API SDK Level we target
export ANDROID_SDK_MINIMUM_API_LEVEL="21"
# Target API SDK level to build for
export ANDROID_SDK_TARGET_API_LEVEL="31"
# Android Image SDK level to install on the emulator
export ANDROID_SYSTEM_IMAGE_API_LEVEL="21"
# Android Virtual Device name
export AVD_NAME="testAVD"
# ABI to use in Android Virtual Device
export AVD_ABI=x86
# Temporarily disabling AVD related tests until newer system images can be installed.
export ANDROID_DISABLE_AVD_TESTS=1
## IOS ##
export IOS_TARGET_OS="latest"
export IOS_DEVICE="iPhone 8"
export SDK_IOS="iphonesimulator"
## 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