erisu commented on issue #962: URL: https://github.com/apache/cordova-lib/issues/962#issuecomment-3332556880
Here is also an example snippet of the changes you would make to your modified plugin: `plugin.xml` Snippet: ```xml <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:rim="http://www.blackberry.com/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" id="@MyOrg/cordova-plugin-geolocation" version="5.0.1-dev"> ``` `package.json` Snippet: ```json { "name": "@MyOrg/cordova-plugin-geolocation", "version": "5.0.1-dev", "description": "Cordova Geolocation Plugin", "cordova": { "id": "@MyOrg/cordova-plugin-geolocation", "platforms": [ "android", "ios", "windows" ] }, ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
