Teliver, a live tracking in android is your one place stop for all GPS Based Location tracking solutions. With simplified integrations for iOS and Android, Teliver synchronizes with applications that require location tracking. Advanced options with the inclusion of Custom markers, Multiple Operator Tracking and Push notifications to enhance user satisfaction and business productivity are accomplished.
Live tracking in android especially live locality shares are now taken a step forward with Teliver. Real time activity stream for On-Demand applications are built on certain crucial qualities:
Accuracy: the base quality being accuracy, Teliver strives in delivering the best ofresults. Multi Business Solutions: Real-Time solutions for business requiring it is delivered with precision. Advanced Customization: With micro managerial possibilities, the opportunity to customize is practically infinite. Create your Teliver (live tracking in android) account today: https://app.teliver.io.
To begin with – The configuration steps
-
Open your build.gradle file of Module:app.
Addimplementation 'io.teliver.sdk:TeliverSdk:4.0.9'
as dependency. -
Obtain the map key from Google maps page.
-
Open your AndroidManifest.xml file and paste the following code under application tag after embedding your map key obtained from Google.
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="API_KEY_FOR_MAP"/>
Note: You can skip steps 2 and 3 if you have already got map key and added it in manifest or you just want the location updates alone.
- Initiate our SDK by adding the following code snippet in your Application class
Teliver.init(this,"TELIVER_KEY");
Note: Obtain the Teliver key from the dashboard https://app.teliver.io, Use
TLog.setVisible(true);
to enable logging for development.
- Next, setup the transmission for the operator app for whom the location has to be tracked.
Teliver.startTrip(new TripBuilder("Tracking_Id").build());
Note: The Tracking_Id here is your unique identifier for the trip; basically it’s just the order id or driver id in your system
- Since our operator app is ready for transmission, we will now setup our consumer side to locate on map.
Teliver.startTracking(new TrackingBuilder(new MarkerOption("Tracking_Id")).build());
Note: The Tracking_Id here is same as the id you given in previous step of operator start trip.
Ref: The above view will appear on calling startTracking
Yay!! That’s all... Now you can track an Operator.
Teliver.stopTrip("Tracking_Id");
Call this method with the tracking id to stop the trip on Operator side.
Teliver.stopTracking("Tracking_Id");
Call this method to stop tracking of Operator from Consumer side.
Add the following line in project's build.gradle - inside respositories of allprojects & buildscripts
maven { url 'https://jitpack.io' }
Add the following line in app build.gradle - inside android
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
Note: Complete documentation can be found at https://docs.teliver.io/