mirror of
https://github.com/element-hq/element-android
synced 2024-11-25 02:45:37 +03:00
Fix a crash when disabling the location on the device
`LocationListener` does not have default implementation for some methods for Android versions below R
This commit is contained in:
parent
ff6810f1f4
commit
7242f1c2f1
1 changed files with 2 additions and 2 deletions
|
@ -19,16 +19,16 @@ package im.vector.app.features.location
|
|||
import android.Manifest
|
||||
import android.content.Context
|
||||
import android.location.Location
|
||||
import android.location.LocationListener
|
||||
import android.location.LocationManager
|
||||
import androidx.annotation.RequiresPermission
|
||||
import androidx.core.content.getSystemService
|
||||
import androidx.core.location.LocationListenerCompat
|
||||
import timber.log.Timber
|
||||
import javax.inject.Inject
|
||||
|
||||
class LocationTracker @Inject constructor(
|
||||
private val context: Context
|
||||
) : LocationListener {
|
||||
) : LocationListenerCompat {
|
||||
|
||||
interface Callback {
|
||||
fun onLocationUpdate(locationData: LocationData)
|
||||
|
|
Loading…
Reference in a new issue