Skip to content

Commit 4a1065e

Browse files
authored
Update AndroidManifest.xml
1 parent 0ed12ea commit 4a1065e

1 file changed

Lines changed: 28 additions & 5 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
1717
android:maxSdkVersion="29"
1818
tools:ignore="ScopedStorage" />
19-
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
20-
tools:ignore="ScopedStorage" />
2119

2220
<!-- Communication permissions -->
2321
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
@@ -66,8 +64,33 @@
6664
<application
6765
android:name=".app.DashApplication"
6866
android:allowBackup="false"
69-
android:dataExtractionRules="@xml/data_extraction_rules
67+
android:dataExtractionRules="@xml/data_extraction_rules"
68+
android:fullBackupContent="@xml/backup_rules"
69+
android:icon="@mipmap/ic_launcher"
70+
android:label="@string/app_name"
71+
android:roundIcon="@mipmap/ic_launcher_round"
72+
android:supportsRtl="true"
73+
android:theme="@style/Theme.Dash"
74+
android:requestLegacyExternalStorage="true"
75+
android:largeHeap="true">
76+
77+
<!-- Main Activities -->
78+
<activity
79+
android:name=".ui.activities.login.LoginActivity"
80+
android:exported="true"
81+
android:theme="@style/Theme.Dash.Login">
82+
<intent-filter>
83+
<action android:name="android.intent.action.MAIN" />
84+
<category android:name="android.intent.category.LAUNCHER" />
85+
</intent-filter>
86+
</activity>
87+
88+
<activity
89+
android:name=".ui.activities.main.MainActivity"
90+
android:exported="false"
91+
android:theme="@style/Theme.Dash"
92+
android:configChanges="orientation|screenSize|key
7093
7194
Wiki pages you might want to explore:
72-
- [Firebase Integration (muneebwanee/Dash)](/wiki/muneebwanee/Dash#2.3)
73-
- [Configuration and Deployment (muneebwanee/Dash)](/wiki/muneebwanee/Dash#6)
95+
- [System Architecture (muneebwanee/Dash)](/wiki/muneebwanee/Dash#2)
96+
- [Firebase Integration (muneebwanee/Dash)](/wiki/muneebwanee/Dash#2.3)

0 commit comments

Comments
 (0)