geofire-android icon indicating copy to clipboard operation
geofire-android copied to clipboard

GeoFire for Android apps

Results 4 geofire-android issues
Sort by recently updated
recently updated
newest added

I get the error below when trying to add a listener to a geofire query. I'm using R8 on my android project and don't know if it's the culprit. Fatal...

In method queryForGeohash in GeoHashQuery.java, we see this code: `String hash = geohash.getGeoHashString();` `int precision = (int)Math.ceil((double)bits/Base32Utils.BITS_PER_BASE32_CHAR);` `if (hash.length() < precision) {` `return new GeoHashQuery(hash, hash+"~");` `}` AND `if (endValue...

I am using Geoquery to fetch nearest documents from Firestore in Android/Java. I try to paginate data with recyclerview. But somehow, ``.startAfter(lastVisible)`` clause makes the query work twice for different...

help wanted

hi i have this code val pickupGeoQuery = pickupGeoFire.queryAtLocation( GeoLocation( mLastLocation!!.latitude, mLastLocation!!.longitude ), KM_RADIUS ) pickupGeoQuery?.addGeoQueryEventListener(object : GeoQueryEventListener { override fun onGeoQueryReady() { Log.e(TAG, "onGeoQueryReady:") } override fun onKeyEntered(key: String?,...

help wanted