Fix Android permission instructions

This commit is contained in:
imgx64 2017-10-23 09:05:49 +03:00 committed by GitHub
parent ef84dfbcfd
commit dfab028e03

View File

@ -84,7 +84,7 @@ The following limitations apply when opening an APK file for installation:
- On Android 8+, your application must have the `ACTION_INSTALL_PACKAGE` permission. You can add it by adding this to your app's `config.xml` file: - On Android 8+, your application must have the `ACTION_INSTALL_PACKAGE` permission. You can add it by adding this to your app's `config.xml` file:
``` ```
<platform name="android"> <platform name="android">
<config-file parent="/manifest" target="AndroidManifest.xml"> <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" /> <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
</config-file> </config-file>
</platform> </platform>