Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 5244f2b

Browse files
Add files via upload
1 parent 8ebf624 commit 5244f2b

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
3+
<uses-permission android:name="android.permission.INTERNET" />
4+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
5+
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
6+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
7+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
8+
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
9+
<application
10+
android:allowBackup="true"
11+
android:icon="@mipmap/ic_launcher"
12+
android:label="@string/formal_name"
13+
android:requestLegacyExternalStorage="true"
14+
android:networkSecurityConfig="@xml/network_security_config"
15+
android:roundIcon="@mipmap/ic_launcher_round"
16+
android:supportsRtl="true"
17+
android:theme="@style/AppTheme.Launcher" >
18+
<!-- https://developer.android.com/guide/topics/resources/runtime-changes#HandlingTheChange -->
19+
<activity
20+
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
21+
android:name="org.beeware.android.MainActivity"
22+
android:exported="true" >
23+
<intent-filter>
24+
<action android:name="android.intent.action.MAIN" />
25+
<category android:name="android.intent.category.LAUNCHER" />
26+
</intent-filter>
27+
28+
</activity>
29+
<provider
30+
android:name="androidx.core.content.FileProvider"
31+
android:authorities="com.arshiacomplus.warpscanner.warpscanner.fileprovider"
32+
android:exported="false"
33+
android:grantUriPermissions="true">
34+
<meta-data
35+
android:name="android.support.FILE_PROVIDER_PATHS"
36+
android:resource="@xml/file_paths">
37+
</meta-data>
38+
</provider>
39+
40+
</application>
41+
42+
43+
</manifest>

0 commit comments

Comments
 (0)