|
16 | 16 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" |
17 | 17 | android:maxSdkVersion="29" |
18 | 18 | tools:ignore="ScopedStorage" /> |
19 | | - <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" |
20 | | - tools:ignore="ScopedStorage" /> |
21 | 19 |
|
22 | 20 | <!-- Communication permissions --> |
23 | 21 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
|
66 | 64 | <application |
67 | 65 | android:name=".app.DashApplication" |
68 | 66 | 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 |
70 | 93 | |
71 | 94 | 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