Skip to content

Instantly share code, notes, and snippets.

View pgomez-racowireless's full-sized avatar

Paulino Gomez pgomez-racowireless

  • Kore Telematics
View GitHub Profile
@pgomez-racowireless
pgomez-racowireless / LocationTrackingService.kt
Created June 6, 2017 18:27 — forked from anonymous/LocationTrackingService.kt
Android location tracking background service in Kotlin language. Referenced from: http://stackoverflow.com/a/28535885/1441324
import android.app.Service
import android.content.Context
import android.content.Intent
import android.location.Location
import android.location.LocationManager
import android.os.Bundle
import android.util.Log
class LocationTrackingService : Service() {