Tracking realtime shipper

This commit is contained in:
Nezumi
2023-04-08 15:22:42 +07:00
parent 93a0b970d9
commit 933174a8c1
21 changed files with 564 additions and 25 deletions
+27 -5
View File
@@ -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