Skip to content

Commit 90b4d70

Browse files
committed
test(e2e): update test app to react-native 0.66.0-rc.1
this fixes a metro javascript debugger issue
1 parent eaebcf7 commit 90b4d70

File tree

7 files changed

+281
-264
lines changed

7 files changed

+281
-264
lines changed

tests/android/app/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ def enableSeparateBuildPerCPUArchitecture = false
3636
*/
3737
def useIntlJsc = false
3838

39+
/**
40+
* Architectures to build native code for in debug.
41+
*/
42+
def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
43+
3944
android {
4045
ndkVersion rootProject.ext.ndkVersion
4146
compileSdkVersion rootProject.ext.compileSdkVersion

tests/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
ext.minSdkVersion = 21
44
ext.compileSdkVersion = 30
55
ext.targetSdkVersion = 30
6-
ext.ndkVersion = '20.1.5948944'
6+
ext.ndkVersion = '21.4.7075529'
77

88
ext.kotlinVersion = '1.5.21' // https://kotlinlang.org/releases.html
99
ext.supportLibVersion = '1.6.0' // this maps to androidx.core https://developer.android.com/jetpack/androidx/releases/core
@@ -32,7 +32,7 @@ buildscript {
3232
}
3333
dependencies {
3434
classpath 'com.google.gms:google-services:4.3.10' // https://developers.google.com/android/guides/google-services-plugin
35-
classpath 'com.android.tools.build:gradle:7.0.0'
35+
classpath 'com.android.tools.build:gradle:7.0.2'
3636
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
3737
classpath 'com.google.firebase:perf-plugin:1.4.0'
3838
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'

tests/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ android.useAndroidX=true
2222
firebasePerformanceInstrumentationEnabled=false
2323

2424
# Version of flipper SDK to use with React Native
25-
FLIPPER_VERSION=0.93.0
25+
FLIPPER_VERSION=0.99.0

tests/ios/Podfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ target 'testing' do
5757
end
5858
aggregate_target.user_project.save
5959
end
60+
__apply_Xcode_12_5_M1_post_install_workaround(installer)
6061
end
6162
end

0 commit comments

Comments
 (0)