-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
45 lines (37 loc) · 1.46 KB
/
AndroidManifest.xml
File metadata and controls
45 lines (37 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.FinalProject"
android:name=".AdminDashboardActivity"
tools:targetApi="31">
<!-- Splash Activity (launch first) -->
<activity
android:name=".SplashActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Main Activity (opens after splash) -->
<activity
android:name=".MainActivity"
android:exported="true">
</activity>
<!-- Admin Login Activity -->
<activity
android:name=".AdminLoginActivity"
android:exported="true" />
<!-- Employee Login Activity -->
<activity
android:name=".EmployeeLoginActivity"
android:exported="true" />
</application>
</manifest>