Android Cordova device.uuid是否需要权限?

时间:2016-04-28 19:29:48

标签: android cordova ionic-framework app-store cordova-plugins

您好我想知道是否使用

cordova-plugin-device device.uuid需要android清单中的特殊权限。

我检查了网站,看不到Android的任何内容 https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-device/index.html

一切正常我只是想知道我的应用程序商店是否需要特殊权限才能使用手机UUID。

1 个答案:

答案 0 :(得分:0)

不,Cordova-plugin-device不需要任何许可。

当您添加插件时,cordova会自动在所有平台中添加所需的权限,因此您无需手动编辑Android清单文件。

如果您想知道哪个插件需要哪个权限可以查看

<project directory>/plugins/<plugin directory>/plugin.xml

如果插件使用了任何权限,您就可以在<platform name="android"> <uses-permission android:name="android.permission.SomePermission" />内看到它{/ 1}