pengkobe / reading-notes

:stars: to record daily reading notes. I build an issue blog to record daily FE study notes. suggestion and comments are welcomed.
https://github.com/pengkobe/reading-notes/issues
MIT License
13 stars 1 forks source link

Android 8.0+ 无法升级安装应用 #458

Open pengkobe opened 5 years ago

pengkobe commented 5 years ago

Android 8.0 以后需要在 config.xml 中添加下述配置才能自动下载应用 apk 包进行更新。

    <platform name="android">
        <config-file parent="/manifest" target="AndroidManifest.xml" xmlns:android="http://schemas.android.com/apk/res/android">
            <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
        </config-file>
    </platform>

参考

https://github.com/pwlin/cordova-plugin-file-opener2