Skip to content

Commit 16c23aa

Browse files
authored
Merge branch 'master' into fix-text-selectable-in-flatlist
2 parents cbc50b9 + eeb36f4 commit 16c23aa

File tree

1,914 files changed

+94702
-88052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,914 files changed

+94702
-88052
lines changed

.buckconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
jcenter = https://jcenter.bintray.com/
1212

1313
[alias]
14-
rntester = //RNTester/android/app:app
14+
rntester = //packages/rn-tester/android/app:app

.circleci/Dockerfiles/Dockerfile.android

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# and build a Android application that can be used to run the
1515
# tests specified in the scripts/ directory.
1616
#
17-
FROM reactnativecommunity/react-native-android:2019-10-18
17+
FROM reactnativecommunity/react-native-android:2.1
1818

1919
LABEL Description="React Native Android Test Image"
2020
LABEL maintainer="Héctor Ramos <[email protected]>"
@@ -25,11 +25,13 @@ ENV JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
2525

2626
ADD .buckconfig /app/.buckconfig
2727
ADD .buckjavaargs /app/.buckjavaargs
28-
ADD tools /app/tools
28+
ADD Libraries /app/Libraries
2929
ADD ReactAndroid /app/ReactAndroid
3030
ADD ReactCommon /app/ReactCommon
3131
ADD React /app/React
3232
ADD keystores /app/keystores
33+
ADD packages/react-native-codegen /app/packages/react-native-codegen
34+
ADD tools /app/tools
3335

3436
WORKDIR /app
3537

@@ -49,4 +51,3 @@ RUN yarn
4951
RUN ./gradlew :ReactAndroid:downloadBoost :ReactAndroid:downloadDoubleConversion :ReactAndroid:downloadFolly :ReactAndroid:downloadGlog
5052

5153
RUN ./gradlew :ReactAndroid:packageReactNdkLibsForBuck -Pjobs=1
52-

.circleci/Dockerfiles/scripts/run-android-docker-instrumentation-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ mount -o remount,exec /dev/shm
1010
AVD_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8 | head -n 1)
1111

1212
# create virtual device
13-
echo no | android create avd -n "$AVD_UUID" -f -t android-19 --abi default/armeabi-v7a
13+
echo no | android create avd -n "$AVD_UUID" -f -t android-21 --abi default/armeabi-v7a
1414

1515
# emulator setup
1616
emulator64-arm -avd $AVD_UUID -no-skin -no-audio -no-window -no-boot-anim &

.circleci/Dockerfiles/scripts/run-ci-e2e-tests.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@ while :; do
6767
shift
6868
;;
6969

70-
--tvos)
71-
RUN_IOS=1
72-
shift
73-
;;
74-
7570
*)
7671
break
7772
esac
@@ -114,7 +109,7 @@ function e2e_suite() {
114109

115110
# create virtual device
116111
if ! android list avd | grep "$AVD_UUID" > /dev/null; then
117-
echo no | android create avd -n "$AVD_UUID" -f -t android-19 --abi default/armeabi-v7a
112+
echo no | android create avd -n "$AVD_UUID" -f -t android-21 --abi default/armeabi-v7a
118113
fi
119114

120115
# newline at end of adb devices call and first line is headers

0 commit comments

Comments
 (0)