mirror of
https://gitcode.com/gh_mirrors/re/react-native-pushy.git
synced 2025-09-17 15:26:10 +08:00
20 lines
843 B
XML
20 lines
843 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cn.reactnative.modules.update">
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<application>
|
|
<meta-data android:name="pushy_build_time" android:value="@string/pushy_build_time" />
|
|
<provider
|
|
android:name=".PushyFileProvider"
|
|
android:authorities="${applicationId}.pushy.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/pushy_file_paths" />
|
|
</provider>
|
|
</application>
|
|
</manifest>
|