|
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + xmlns:tools="http://schemas.android.com/tools" |
| 3 | + package="app.gwo.wechat.docuiproxy"> |
| 4 | + |
| 5 | + <!-- We do not use this permission actually. But it is required for Android M+ security limitations. --> |
| 6 | + <uses-permission android:name="android.permission.CAMERA"/> |
| 7 | + |
| 8 | + <!-- Use to save choose result in the ProxyCameraActivity --> |
| 9 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
| 10 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 11 | + |
| 12 | + <application |
| 13 | + android:allowBackup="true" |
| 14 | + android:icon="@mipmap/ic_launcher" |
| 15 | + android:label="@string/app_name" |
| 16 | + android:roundIcon="@mipmap/ic_launcher_round" |
| 17 | + android:supportsRtl="true" |
| 18 | + android:fullBackupContent="false" |
| 19 | + android:theme="@style/Base.Theme.App" |
| 20 | + tools:ignore="GoogleAppIndexingWarning"> |
| 21 | + |
| 22 | + <activity |
| 23 | + android:name=".ProxyCameraActivity" |
| 24 | + android:theme="@style/Theme.Transparent" |
| 25 | + android:exported="true"> |
| 26 | + <intent-filter> |
| 27 | + <action android:name="android.media.action.IMAGE_CAPTURE"/> |
| 28 | + |
| 29 | + <category android:name="android.intent.category.DEFAULT"/> |
| 30 | + </intent-filter> |
| 31 | + </activity> |
| 32 | + |
| 33 | + <provider |
| 34 | + android:authorities="${applicationId}.FILE_PROVIDER" |
| 35 | + android:name="androidx.core.content.FileProvider" |
| 36 | + android:exported="false" |
| 37 | + android:grantUriPermissions="true"> |
| 38 | + <meta-data |
| 39 | + android:name="android.support.FILE_PROVIDER_PATHS" |
| 40 | + android:resource="@xml/file_provider_paths"/> |
| 41 | + </provider> |
| 42 | + |
| 43 | + </application> |
| 44 | + |
| 45 | +</manifest> |
0 commit comments