All Projects → teliver → Teliver Android

teliver / Teliver Android

Realtime Live Tracking of Location made Easy.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Teliver Android

Openlocate Android
Stars: ✭ 136 (+177.55%)
Mutual labels:  location, android-sdk
Docker Jenkins Android
Jenkins docker image for Android development
Stars: ✭ 35 (-28.57%)
Mutual labels:  android-sdk
Androidsdk
🐳 Full-fledged Android SDK Docker Image
Stars: ✭ 776 (+1483.67%)
Mutual labels:  android-sdk
Awesome Android
😎 A curated list of awesome Android resources
Stars: ✭ 26 (-46.94%)
Mutual labels:  android-sdk
Morphing Material Dialogs
Material dialog ❤️ morphing animation. An android kotlin UI library for building beautiful animations for converting a floating action button into a material dialog.
Stars: ✭ 806 (+1544.9%)
Mutual labels:  android-sdk
Pizza Delivery
university project : Android pizza delivery app
Stars: ✭ 32 (-34.69%)
Mutual labels:  location
Flutter Geolocator
Android and iOS Geolocation plugin for Flutter
Stars: ✭ 759 (+1448.98%)
Mutual labels:  location
Mybox
Easy tools of document, image, file, network, location, color, and media.
Stars: ✭ 45 (-8.16%)
Mutual labels:  location
Androidkex
Extensions for Kotlin. Use the power of Kotlin to make your code smaller and beautiful.
Stars: ✭ 35 (-28.57%)
Mutual labels:  android-sdk
React Native Geolocation Service
React native geolocation service for iOS and android
Stars: ✭ 934 (+1806.12%)
Mutual labels:  location
Commander
Set of reactive functions for cli tools like Swarmer and Composer.
Stars: ✭ 19 (-61.22%)
Mutual labels:  android-sdk
Sn0int
Semi-automatic OSINT framework and package manager
Stars: ✭ 814 (+1561.22%)
Mutual labels:  location
Awesome Android Ui
😎😍Android libs and UI from GitHub or other websites. android libs from Github
Stars: ✭ 33 (-32.65%)
Mutual labels:  android-sdk
Howmanypeoplearearound
Count the number of people around you 👨‍👨‍👦 by monitoring wifi signals 📡
Stars: ✭ 6,525 (+13216.33%)
Mutual labels:  location
Andtroj
A tool for integrating the Metasploit payload with Android's healthy programs and bypassing antivirus
Stars: ✭ 43 (-12.24%)
Mutual labels:  android-sdk
Motiontoast
🌈 A Beautiful Motion Toast Library for Kotlin Android
Stars: ✭ 767 (+1465.31%)
Mutual labels:  android-sdk
Android Sdk
Beaconstac ADVANCED SDK for Android devices
Stars: ✭ 18 (-63.27%)
Mutual labels:  android-sdk
Pelias Android Sdk
Android sdk for pelias
Stars: ✭ 20 (-59.18%)
Mutual labels:  location
Permissionsflow
A simple library to make it easy requesting permissions in Android using Kotlin Coroutines.
Stars: ✭ 49 (+0%)
Mutual labels:  android-sdk
Svelte Pick A Place
Javascript location picker built with Svelte
Stars: ✭ 44 (-10.2%)
Mutual labels:  location

Teliver

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.

Configuration

To begin with – The configuration steps

  1. Open your build.gradle file of Module:app.
    Add compile 'com.teliver.sdk:TeliverSdk:2.0.36'as dependency.

  2. Obtain the map key from Google maps page.

  3. 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.

Integration

Let’s see the magical spells now!!
  • 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.

  • Stop Trip
Teliver.stopTrip("Tracking_Id");

Call this method with the tracking id to stop the trip on Operator side.


  • Stop Tracking
Teliver.stopTracking("Tracking_Id");

Call this method to stop tracking of Operator from Consumer side.


Note: Complete documentation can be found at https://docs.teliver.io/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].