From 990cc7c5a2fee436991c3a0c6cba06fada93c7f0 Mon Sep 17 00:00:00 2001 From: CW Date: Tue, 4 Feb 2025 11:43:26 -0800 Subject: [PATCH 1/3] bump detox to 20.32.0 --- package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index ba6cb495a7e..62560400acb 100644 --- a/package.json +++ b/package.json @@ -459,7 +459,7 @@ "browserstack-local": "^1.5.1", "chromedriver": "^123.0.1", "depcheck": "^1.4.7", - "detox": "^20.27.5", + "detox": "20.32.0", "dotenv": "^16.0.3", "dpdm": "^3.14.0", "enzyme": "3.9.0", diff --git a/yarn.lock b/yarn.lock index ecc3322eb51..33d917dabc8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15261,15 +15261,15 @@ detect-node@^2.0.4: resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -detox-copilot@^0.0.23: - version "0.0.23" - resolved "https://registry.yarnpkg.com/detox-copilot/-/detox-copilot-0.0.23.tgz#724aeb62424018b4b6d5620bb0dc7e800e4e4f6b" - integrity sha512-qDSdLwgPUMVawpE0R3agNWd2U69ilTnhf+SodSqqrkmTI0oG67IfkACvwox+K9Slcc8ki6y0Bw6QVBi54MqpaA== +detox-copilot@^0.0.27: + version "0.0.27" + resolved "https://registry.yarnpkg.com/detox-copilot/-/detox-copilot-0.0.27.tgz#350ee91ae6ba77acac78513ccbda7aafcb3c6faf" + integrity sha512-H2febTNp0arVx2A8rvM1C2BwDiBEP/2Ya8Hd1mVyV66rR5u8om1gdIypaRGm+plpTLCHhlefe4+7qLtHgVzpng== -detox@^20.27.5: - version "20.27.5" - resolved "https://registry.yarnpkg.com/detox/-/detox-20.27.5.tgz#f67d1a0c9ddbb2b6edb838e1b32c63b486be66ea" - integrity sha512-JBe3fONwaSxYubd/36SZh3c2MaYs+Cx7sOA4GJfh16QTyoB7XvvbGrSlQDTbag/f0j5RZt4judPtg5A3P1/Uhg== +detox@20.32.0: + version "20.32.0" + resolved "https://registry.yarnpkg.com/detox/-/detox-20.32.0.tgz#d10f4ba91ed1c4b2c39eaf9db01935560b2e962a" + integrity sha512-xi2FSkoZ+8XYbfOFaMpC1uMKiuRlx0AXjnzTwuCGxjCsntM+YIU/zlACRjmsIAH4pHt7yVlJeV8xZyVGqIeeOg== dependencies: ajv "^8.6.3" bunyan "^1.8.12" @@ -15277,7 +15277,7 @@ detox@^20.27.5: caf "^15.0.1" chalk "^4.0.0" child-process-promise "^2.2.0" - detox-copilot "^0.0.23" + detox-copilot "^0.0.27" execa "^5.1.1" find-up "^5.0.0" fs-extra "^11.0.0" From 363462fe9f3d297025efbd30c99100e0e40c3dd2 Mon Sep 17 00:00:00 2001 From: CW Date: Tue, 4 Feb 2025 12:17:13 -0800 Subject: [PATCH 2/3] update detox ref package path --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 1b061a18713..c55558772e0 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -288,7 +288,7 @@ dependencies { } else { implementation jscFlavor } - androidTestImplementation('com.wix:detox-legacy:+') { + androidTestImplementation('com.wix:detox:+') { exclude module: "protobuf-lite" } androidTestImplementation ('androidx.test.espresso:espresso-contrib:3.4.0') From da9aef10204fe0fc827f5202eaf7de28d88822c7 Mon Sep 17 00:00:00 2001 From: CW Date: Thu, 6 Feb 2025 12:24:56 -0800 Subject: [PATCH 3/3] update minSdk buildscript --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 214173dd697..3b324c6e196 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,7 +4,7 @@ buildscript { ext { buildToolsVersion = "34.0.0" - minSdkVersion = project.hasProperty('minSdkVersion') ? project.getProperty('minSdkVersion') : 23 + minSdkVersion = project.hasProperty('minSdkVersion') ? project.getProperty('minSdkVersion') : 24 compileSdkVersion = 34 targetSdkVersion = 34 // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.