You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there are rules in China Mainland regarding to how device uuid can be collected and used.
Some of the android distribution shops eg: Huawei shop, disallow collecting device uuid.
And therefore I wonder if we can support configuration to enable/disable device uuid feature.
Thanks
Feature Description
Support configuration to enable/disable device uuid feature
Alternatives or Workarounds
Alternatively we can comment out #GetUuid() method after the native code is built.
The text was updated successfully, but these errors were encountered:
I comment Device.uuid = getUuid(); public void initialize(CordovaInterface cordova, CordovaWebView webView) { super.initialize(cordova, webView); // Device.uuid = getUuid(); }
and add a setDeviceUuid action to set uuid when user agree.
For privacy concerns, I agree this change is necessary. In addition to your use case, not all users of this plugin needs or requires the UUID. Sometimes they just simply want to know the device android version for compatibility checks. So generating/pulling the UUID when it's not required can raise privacy concerns.
Pull requests are welcome, however keep in mind that this request in particular will be a breaking change as it requires not automatically generating/determining UUID on the platform, which means it would require the application to call on the API to generate/get the UUID when it is deemed acceptable to do so. As a result it may take some time before we can incorporate or merge any pull requests for this feature request.
For the breaking change reasons, I've added to our 3.x milestone, so when we begin preparing for a major release, this won't be forgotten.
Feature Request
Motivation Behind Feature
Currently there are rules in China Mainland regarding to how device uuid can be collected and used.
Some of the android distribution shops eg: Huawei shop, disallow collecting device uuid.
And therefore I wonder if we can support configuration to enable/disable device uuid feature.
Thanks
Feature Description
Support configuration to enable/disable device uuid feature
Alternatives or Workarounds
Alternatively we can comment out #GetUuid() method after the native code is built.
The text was updated successfully, but these errors were encountered: