Coder Social home page Coder Social logo

Comments (4)

dpa99c avatar dpa99c commented on May 24, 2024

I can say with almost certaintly that your problem is you have an outdated version of the Cordova CLI. You can confirm this by simply typing cordova -v. If the version is any less than 5.0.0, there's your problem. To update to the most recent version, use npm install -g cordova.

Since version 5.0.0, cordova has switched to use npmjs as its plugin registry, but earlier versions (3.x-4.x) still use the now deprecated Cordova Plugin Repository as the primary plugin registry. The Cordova Plugin Repository is now immutablable (read-only) which means that any plugins on there are likely to be out-of-date, including this one. The last version of cordova.plugins.diagnostic published here was v1.1.0. Whereas the version on npmjs is now v2.1.0.

Note that in v2.1.0, cordova.plugins.diagnostic.isLocationEnabled() returns true on Android if GPS or network location (Wifi/cell triangulation) is enabled. To specifically test if GPS is enabled, use cordova.plugins.diagnostic.isGpsLocationEnabled()

On iOS, it is not possible to differentiate between GPS and network location providers, so cordova.plugins.diagnostic.isLocationEnabled() returns true if Location Services is enabled and the app has been authorized to use location.

from cordova-diagnostic-plugin.

grapemix avatar grapemix commented on May 24, 2024

Thanks for your reply. I really wish your guess it true, then I can resolve this problem quick.

The android version of my app works perfectly now, but the iOS version of app still have problem.

Let's assume my local env is broken, the phonegap build should be fine, right? As I mentioned earlier, my iOS app is built in phonegap clould platform, so I assume the version should not be the problem as I used <gap:plugin name="cordova.plugins.diagnostic" source="npm" /> in my config.xml(I cannot confirm the version since the build log does not show me the version)

Right now, the cordova.plugins.diagnostic.isLocationEnabled is fine in iOS, but the cordova.plugins.diagnostic object does not have switchToSettings function 0.O

Do you still suspect the plugin version is the problem or do you have a second thought?

Thanks.

from cordova-diagnostic-plugin.

dpa99c avatar dpa99c commented on May 24, 2024

If cordova.plugins.diagnostic.switchToSettings() is not defined, then it's almost certain you're including an old version of the plugin. I've no experience with Phonegap Build (I build everything locally), but you should make sure you're specifying npm as the plugin repository:

<gap:plugin name="cordova.plugins.diagnostic" source="npm" />

and not Cordova Plugin Repository:

<gap:plugin name="cordova.plugins.diagnostic" source="plugins.cordova.io" />

from cordova-diagnostic-plugin.

dpa99c avatar dpa99c commented on May 24, 2024

Can this be closed?

from cordova-diagnostic-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.