在下面的位置看到可以检查运行环境的权限,结果发现,安卓平台不支持
http://www.html5plus.org/doc/zh_cn/navigator.html#plus.navigator.checkPermission
这里有一个是ios的 http://ask.dcloud.net.cn/question/4497
var UIApplication = plus.ios.import("UIApplication");
var app = UIApplication.sharedApplication();
var enabledTypes = 0;
if (app.currentUserNotificationSettings) {
var settings = app.currentUserNotificationSettings();
enabledTypes = settings.plusGetAttribute("types");
} else {
enabledTypes = app.enabledRemoteNotificationTypes();
}
plus.ios.deleteObject(app);
安卓的应该怎么写呢
3 个回复
mantye (作者)
这个是写不出来还是没人写,要是写不出来,我也不找了,android的东西大都看不懂。
wanghui - php开发工程师,会vue
我也想知道
f***@gmail.com
应该是写不出来
var NotificationManagerCompat = plus.android.importClass("android.support.v4.app.NotificationManagerCompat");
这个都引入不了