Tag: android geofence

Geofence不在Kotlin工作

Geofence不在Kotlin中工作,尽管相同的代码在Java中工作。 我是Kotlin的新手,因此无法理解这个问题。 其实我从一个活动MainActivity调用MainGeofence.kt服务类以下是代码 MainGeofence.kt public class MainGeofence : IntentService(“MyService”), LocationListener { internal var mGeofencePendingIntent: PendingIntent? = null private var mGeofenceList: ArrayList? = null private var mGoogleApiClient: GoogleApiClient? = null val TAG = “Activity” internal lateinit var mLocationRequest: LocationRequest internal var currentLatitude = <<lat value internal var currentLongitude = <<long value override fun onCreate() { super.onCreate() […]