快应用:创建桌面图标, 创建失败

快应用预览版创建桌面图标一直创建失败,是由于预览版不能创建桌面图标吗?

打开手机设置,权限管理,开启快应用预览版的桌面快捷方式的权限再试一下。

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}`)
            }
          })
        }
      }
    })
}
    原文作者:小强有个dream
    原文地址: https://blog.csdn.net/qq_36413371/article/details/121156695
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞