You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.3 KiB
20 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<application android:allowBackup="true" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" android:supportsRtl="true"></application>
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
|
|
<!-- Required only if your app needs to access images or photos that other apps created -->
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
<!-- Required only if your app needs to access videos that other apps created -->
|
|
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
|
|
<!-- Required only if your app needs to access audio files that other apps created -->
|
|
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
|
|
<queries>
|
|
<intent>
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
</intent>
|
|
</queries>
|
|
</manifest> |