From 54d28b5b59484a09f371a998177720bc0c1ec86a Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 20 Aug 2026 10:20:55 +0000 Subject: [PATCH 1/2] pin MMKVCore and MMKVAppExtension to 2.4.0 MMKVCore 2.4.1 fails to compile (memset_s). Pinning only MMKVAppExtension still resolves MMKVCore 2.4.1 because ~> 2.4.0 allows it. Co-authored-by: Dominic Seung --- apps/mobile/plugins/withAddPodDepsToTargets.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/mobile/plugins/withAddPodDepsToTargets.ts b/apps/mobile/plugins/withAddPodDepsToTargets.ts index 4df6453..b07965e 100644 --- a/apps/mobile/plugins/withAddPodDepsToTargets.ts +++ b/apps/mobile/plugins/withAddPodDepsToTargets.ts @@ -9,7 +9,8 @@ target "StatusWidget" do use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS'] - pod "MMKVAppExtension" + pod "MMKVAppExtension", "2.4.0" + pod "MMKVCore", "2.4.0" end `; From c3f355b14b62211e5f58045a134abb72c2d4e661 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 20 Aug 2026 10:49:18 +0000 Subject: [PATCH 2/2] make maestro-test.sh executable The iOS test job failed immediately with permission denied (exit 126) because the script was checked in as 100644. Co-authored-by: Dominic Seung --- apps/mobile/scripts/maestro-test.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 apps/mobile/scripts/maestro-test.sh diff --git a/apps/mobile/scripts/maestro-test.sh b/apps/mobile/scripts/maestro-test.sh old mode 100644 new mode 100755