快应用预览版创建桌面图标一直创建失败,是由于预览版不能创建桌面图标吗?
打开手机设置,权限管理,开启快应用预览版的桌面快捷方式的权限再试一下。
manifest.json
"features": [
{
"name": "system.shortcut"
}
]
app.ux
import shortcut from '@system.shortcut'
onCreate() {
// 创建桌面图标
shortcut.hasInstalled({
success: function (flag) {
console.log('handling success创建桌面图标', flag)
if (!flag) {
shortcut.install({
success: function () {
console.log('handling success')
},
fail: function (data, code) {
console.log(`handling fail, code = ${code}, errorMsg=${data}`)
}
})
}
}
})
}