mirror of
https://github.com/Nezumi-2711/Foodify.git
synced 2026-09-23 04:09:52 +00:00
Tracking realtime shipper
This commit is contained in:
@@ -28,17 +28,39 @@
|
||||
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:launchMode="singleTask"
|
||||
android:exported="true">
|
||||
|
||||
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:scheme="demozpdk"
|
||||
android:host="app" />
|
||||
|
||||
<data
|
||||
android:host="app"
|
||||
android:scheme="demozpdk" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
|
||||
Reference in New Issue
Block a user