mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="xyz.blueskyweb.app">
3
4 <uses-permission android:name="android.permission.INTERNET" />
5 <uses-permission android:name="android.permission.CAMERA"/>
6 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8
9 <application
10 android:name=".MainApplication"
11 android:label="@string/app_name"
12 android:icon="@mipmap/ic_launcher"
13 android:roundIcon="@mipmap/ic_launcher_round"
14 android:allowBackup="false"
15 android:theme="@style/AppTheme">
16 <activity
17 android:name=".MainActivity"
18 android:label="@string/app_name"
19 android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
20 android:launchMode="singleTask"
21 android:windowSoftInputMode="adjustPan"
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 <!-- deep linking via web links -->
28 <intent-filter android:autoVerify="true">
29 <action android:name="android.intent.action.VIEW" />
30 <category android:name="android.intent.category.DEFAULT" />
31 <category android:name="android.intent.category.BROWSABLE" />
32 <!-- debug host: https://bsky.pfrazee.com -->
33 <data android:scheme="https" />
34 <data android:host="bsky.pfrazee.com" />
35 </intent-filter>
36 <!-- deep linking via custom links -->
37 <intent-filter>
38 <action android:name="android.intent.action.VIEW" />
39 <category android:name="android.intent.category.DEFAULT" />
40 <category android:name="android.intent.category.BROWSABLE" />
41 <!-- debug scheme: bsky://app -->
42 <data android:scheme="bsky" />
43 <data android:host="app" />
44 </intent-filter>
45 </activity>
46 </application>
47</manifest>