From 28e864e06647a123c0380c172a8b05b8d102bf29 Mon Sep 17 00:00:00 2001 From: Selim Ustel Date: Tue, 19 Aug 2025 10:44:43 +0300 Subject: [PATCH 1/5] add property to gradle.properties for qr scanning --- android/gradle.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/android/gradle.properties b/android/gradle.properties index ace0bb1d..0b8bd541 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -26,3 +26,4 @@ android.suppressUnsupportedCompileSdk=33 newArchEnabled=false hermesEnabled=true mendixnative.cookieEncryption=false +VisionCamera_enableCodeScanner=true \ No newline at end of file From 00ee8eaea02bf234eb5c91b5accf888af68e0b84 Mon Sep 17 00:00:00 2001 From: Selim Ustel Date: Tue, 19 Aug 2025 14:05:59 +0300 Subject: [PATCH 2/5] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d090ff0f..679bb05b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +- We added a new property to gradle.properties for scanning QR codes. + - We have migrated from react-native-push-notification to @notifee/react-native for better new architecture compatibility and enhanced push notification features - We have upgraded `react-native-permissions` to version 5.4.2 From 918500c84786895ac4b4981bd4c52a8517b2336b Mon Sep 17 00:00:00 2001 From: Selim Ustel Date: Thu, 2 Oct 2025 16:19:02 +0200 Subject: [PATCH 3/5] update swift version of vision camrea --- ios/Podfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ios/Podfile b/ios/Podfile index b87a498d..d4526c68 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -114,6 +114,9 @@ post_install do |installer| if target.name == 'react-native-video' config.build_settings['SWIFT_VERSION'] = '5.0' end + if target.name == 'react-native-vision-camera' + config.build_settings['SWIFT_VERSION'] = '5.2' + end end end # Ensure deployment_target is set correctly for all projects From bb06be08dda2a8cd426dc4af5abbbaecfac811b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Fri, 3 Oct 2025 17:09:29 +0200 Subject: [PATCH 4/5] Update Podfile --- ios/Podfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/Podfile b/ios/Podfile index d4526c68..a0fbd6ec 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -114,8 +114,8 @@ post_install do |installer| if target.name == 'react-native-video' config.build_settings['SWIFT_VERSION'] = '5.0' end - if target.name == 'react-native-vision-camera' - config.build_settings['SWIFT_VERSION'] = '5.2' + if target.name == 'VisionCamera' + config.build_settings['SWIFT_VERSION'] = '5.0' end end end From 2c55522f54dab3feb071bb54a8e6853d0aaf763c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Fri, 3 Oct 2025 17:10:00 +0200 Subject: [PATCH 5/5] Update Podfile --- ios/Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Podfile b/ios/Podfile index a0fbd6ec..f7106a21 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -115,7 +115,7 @@ post_install do |installer| config.build_settings['SWIFT_VERSION'] = '5.0' end if target.name == 'VisionCamera' - config.build_settings['SWIFT_VERSION'] = '5.0' + config.build_settings['SWIFT_VERSION'] = '5.2' end end end