From f2fe97b92935afb7e1e7fc4d269fc5d5cb934117 Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Tue, 27 Aug 2024 12:26:39 -0700 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20Use=20the=20correct=20p?= =?UTF-8?q?ackage=20name=20for=20ibeacon=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This ensures that we don't "discover" the plugin and try to install it https://github.com/e-mission/e-mission-phone/pull/1168#issuecomment-2313327905 Without this change: ``` Discovered plugin "cordova-plugin-ibeacon". Adding it to the project Plugin "com.unarin.cordova.beacon" already installed on android. Plugin "com.unarin.cordova.beacon" already installed on ios. ``` With this change: those logs don't show up --- package.cordovabuild.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/package.cordovabuild.json b/package.cordovabuild.json index 385a7f378..b281682e2 100644 --- a/package.cordovabuild.json +++ b/package.cordovabuild.json @@ -80,7 +80,10 @@ "cordova-plugin-androidx-adapter": {}, "phonegap-plugin-barcodescanner": { "ANDROID_SUPPORT_V4_VERSION": "27.+" - } + }, + "cordova-plugin-bluetooth-classic-serial-port": {}, + "cordova-custom-config": {}, + "com.unarin.cordova.beacon": {} } }, "dependencies": { @@ -116,6 +119,14 @@ "cordova-plugin-ionic-webview": "5.0.0", "cordova-plugin-local-notification-12": "0.1.4", "cordova-plugin-x-socialsharing": "6.0.4", + "cordova-plugin-bluetooth-classic-serial-port": "git+https://github.com/louisg1337/cordova-plugin-bluetooth-classic-serial-port.git", + "cordova-custom-config": "^5.1.1", + "com.unarin.cordova.beacon": "github:louisg1337/cordova-plugin-ibeacon", + "core-js": "^2.5.7", + "e-mission-common": "github:JGreenlee/e-mission-common#semver:0.5.4", + "enketo-core": "^6.1.7", + "enketo-transformer": "^4.0.0", + "fast-xml-parser": "^4.2.2", "fs-extra": "^9.0.1", "klaw-sync": "^6.0.0", "phonegap-plugin-barcodescanner": "git+https://github.com/phonegap/phonegap-plugin-barcodescanner#v8.1.0"