Giter Club home page Giter Club logo

Comments (1)

dpa99c avatar dpa99c commented on August 15, 2024

This plugin is used in multiple production apps that use background location on both Android & iOS so sounds like a problem with your project/development environment, not this plugin.
The plugin code itself will not behave differently in debug vs release builds.

  1. The ionic plugin doesn't have the diagnostic.permission.ACCESS_BACKGROUND_LOCATION

https://github.com/dpa99c/cordova-diagnostic-plugin/blob/master/www/android/diagnostic.js#L32

  1. The ionic plugin missing features/methods

The plugin does not lack the features required to request background location permission on Android 13+ - this is supported and being used in production.

Note that to request background location permission on Android 13+, you must first request and be granted foreground location permission before requesting background location permission:

cordova.plugins.diagnostic.requestLocationAuthorization(function(status){
	if(status === cordova.plugins.diagnostic.permissionStatus.GRANTED){
		cordova.plugins.diagnostic.requestLocationAuthorization(function(status){
		   console.log("Background location permission granted");
		}, onError, cordova.plugins.diagnostic.locationAuthorizationMode.ALWAYS, cordova.plugins.diagnostic.locationAccuracyAuthorization.FULL);
	}
}, onError, cordova.plugins.diagnostic.locationAuthorizationMode.WHEN_IN_USE, cordova.plugins.diagnostic.locationAccuracyAuthorization.FULL);

You must also include ACCESS_BACKGROUND_LOCATION permission in your AndroidManifest.xml as well as ACCESS_FINE_LOCATION/ACCESS_COARSE_LOCATION.

Please refer to the example project for reference and to validate the plugin works correctly.

Note this is a Cordova plugin: the Ionic Typescript wrapper for this plugin is not part of the plugin code and is independently maintained.

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.