From f6c65efe0f2f18f43153bc08f06fdc4562a50b50 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Tue, 22 Sep 2020 21:26:08 +0200 Subject: [PATCH] bump --- README.md | 2 ++ demo/app/App_Resources/iOS/Podfile | 7 +++++++ demo/app/main-page.xml | 2 +- src/package.json | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 demo/app/App_Resources/iOS/Podfile diff --git a/README.md b/README.md index 8215b58..cf8ed2a 100755 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ > 💡 Plugin version 4.0.0+ is compatible with NativeScript 7+. If you need to target older NativeScript versions, please stick to plugin version 3.4.2. +> ⚠️ If you app crashes with the 4.x version on iOS, try setting `beepOnScan` to `false`. And please open an issue if so. + ## Want a quick demo? > Note that running this only makes sense on a real device. diff --git a/demo/app/App_Resources/iOS/Podfile b/demo/app/App_Resources/iOS/Podfile new file mode 100644 index 0000000..179f824 --- /dev/null +++ b/demo/app/App_Resources/iOS/Podfile @@ -0,0 +1,7 @@ +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' + end + end +end \ No newline at end of file diff --git a/demo/app/main-page.xml b/demo/app/main-page.xml index 404f79c..c2167fc 100644 --- a/demo/app/main-page.xml +++ b/demo/app/main-page.xml @@ -21,7 +21,7 @@ diff --git a/src/package.json b/src/package.json index 3fd2d8c..b3fbb56 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-barcodescanner", - "version": "4.0.0", + "version": "4.0.1", "description": "Scan QR/barcodes with your NativeScript app.", "main": "barcodescanner", "typings": "index.d.ts",