mirror of
https://github.com/Nezumi-2711/PRM392.git
synced 2026-09-22 05:41:45 +00:00
106 lines
3.9 KiB
XML
106 lines
3.9 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.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<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=".FavoritesActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".SearchActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.Foodify.NoActionBar" />
|
|
<activity
|
|
android:name=".OrderDetail"
|
|
android:exported="true"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="app"
|
|
android:scheme="demozpdk" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".ShowComment"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ChangePassword"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ForgotPassword"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".VerifyPhone"
|
|
android:exported="false" />
|
|
<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"
|
|
android:theme="@style/Theme.Foodify.NoActionBar" />
|
|
<activity
|
|
android:name=".SignIn"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.Foodify.NoActionBar" />
|
|
<activity
|
|
android:name=".Welcome"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.Foodify.NoActionBar">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service android:name=".Service.MyFirebaseIdService">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
<service
|
|
android:name=".Service.MyFirebaseMessaging"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
|
|
</manifest> |