mirror of
https://github.com/Nezumi-2711/Foodify.git
synced 2026-09-22 13:38:41 +00:00
121 lines
4.8 KiB
XML
121 lines
4.8 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">
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.telephony"
|
|
android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
|
<uses-permission android:name="android.permission.READ_SMS" />
|
|
<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:supportsRtl="true"
|
|
android:theme="@style/Theme.Foodify"
|
|
android:usesCleartextTraffic="true"
|
|
tools:replace="android:theme"
|
|
tools:targetApi="31">
|
|
|
|
<!--
|
|
TODO: Before you run your application, you need a Google Maps API key.
|
|
|
|
To get one, follow the directions here:
|
|
|
|
https://developers.google.com/maps/documentation/android-sdk/get-api-key
|
|
|
|
Once you have your API key (it starts with "AIza"), define a new property in your
|
|
project's local.properties file (e.g. MAPS_API_KEY=Aiza...), and replace the
|
|
"YOUR_API_KEY" string in this file with "${MAPS_API_KEY}".
|
|
-->
|
|
<meta-data
|
|
android:name="com.google.android.geo.API_KEY"
|
|
android:value="AIzaSyAY14Ic32UP26Hg6GILznOfbBihiY5BUxw" />
|
|
|
|
<activity
|
|
android:name=".Activity.TrackingOrderActivity"
|
|
android:exported="false"
|
|
android:label="@string/title_activity_tracking_order" />
|
|
<activity
|
|
android:name=".Activity.OrderCheckOutActivity"
|
|
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=".Activity.FavoriteFoodActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.ShopDetailActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.OrderDetailActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.OrderActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.AddressManagerActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.ChangePasswordActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.AccountAndProfileActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.FoodDetailActivity"
|
|
android:exported="false"
|
|
android:noHistory="true" />
|
|
<activity
|
|
android:name=".Activity.ResetPasswordActivity"
|
|
android:exported="false"
|
|
android:noHistory="true" />
|
|
<activity
|
|
android:name=".Activity.VerifyAccountActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.ForgotPasswordActivity"
|
|
android:exported="false"
|
|
android:noHistory="true" />
|
|
<activity
|
|
android:name=".Activity.SignInActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".Activity.SignUpActivity"
|
|
android:exported="false"
|
|
android:noHistory="true" />
|
|
<activity
|
|
android:name=".Activity.MainActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.Foodify.SplashScreen">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |