We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried Estimote SDK version 1.0.5, 1.0.7, 1.0.8
I granted all permission android.permission.BLUETOOTH_CONNECT, android.permission.BLUETOOTH_SCAN, android.permission.ACCESS_FINE_LOCATION
val officeZone = ProximityZoneBuilder() .forTag("OfficeZone") .inFarRange() .onEnter { Logcat.i(TAG, "OfficeZone onEnter major: ${it.attachments["major"]}, ${it.attachments["minor"]}") listener?.success(BeaconLocation(it.attachments["major"], it.attachments["minor"])) } .onContextChange { pzc -> pzc.last().also { pz -> Logcat.i(TAG, "OfficeZone major: ${pz.attachments["major"]}, ${pz.attachments["minor"]}") listener?.success(BeaconLocation(pz.attachments["major"], pz.attachments["minor"])) } }.build() proximityObserverHandler = proximityObserver?.startObserving(officeZone)
but no response from onEnter / onContextChange function, and no received any error, but not work
The text was updated successfully, but these errors were encountered:
we used the old version gradle-5.4.1 is work after we upgrade to gradle-6.1.1 or above, it is not work
Sorry, something went wrong.
No branches or pull requests
I tried Estimote SDK version 1.0.5, 1.0.7, 1.0.8
I granted all permission
android.permission.BLUETOOTH_CONNECT,
android.permission.BLUETOOTH_SCAN,
android.permission.ACCESS_FINE_LOCATION
but no response from onEnter / onContextChange function, and no received any error, but not work
The text was updated successfully, but these errors were encountered: