Add Shipping Directions Function

This commit is contained in:
phanhuuloi27
2022-06-06 21:45:33 +07:00
parent 9b09517c5e
commit 68cd0a41ea
12 changed files with 544 additions and 1 deletions
@@ -3,6 +3,8 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.waterbase.foodifyServer">
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
@@ -13,6 +15,27 @@
android:supportsRtl="true"
android:theme="@style/Theme.FoodifyServer"
tools:targetApi="31">
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<!--
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="AIzaSyApaoTIiQj-faYEkJuSlJoTHTZFC4L8CbM" />
<activity
android:name=".TrackingOrder"
android:exported="false"
android:label="@string/title_activity_tracking_order" />
<activity
android:name=".OrderStatus"
android:exported="false" />