mirror of
https://github.com/Nezumi-2711/PRM392.git
synced 2026-09-22 13:48:29 +00:00
Upload Foodify-Client
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
<?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" />
|
||||
|
||||
<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=".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>
|
||||
Reference in New Issue
Block a user