Upload Foodify-Client

This commit is contained in:
phanhuuloi27
2022-06-04 21:33:45 +07:00
parent 83a30a09e9
commit 93b5a08012
94 changed files with 3403 additions and 0 deletions
+53
View File
@@ -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>