mirror of
https://github.com/Nezumi-2711/PRM392.git
synced 2026-09-22 13:48:29 +00:00
69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.waterbase.foodify">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<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.Foodify"
|
|
tools:replace="android:theme"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".ChangePassword"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ForgotPassword"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".VerifyPhone"
|
|
android:exported="false" />
|
|
|
|
<service
|
|
android:name=".Service.ListenOrder"
|
|
android:enabled="true"
|
|
android:exported="true" />
|
|
|
|
<activity
|
|
android:name=".OrderStatus"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Cart"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".FoodDetail"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".FoodList"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Home"
|
|
android:exported="false"
|
|
android:label="@string/title_activity_home"
|
|
android:theme="@style/Theme.Foodify.NoActionBar" />
|
|
<activity
|
|
android:name=".SignUp"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".SignIn"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Welcome"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |