Back to project page kirin-for-android.
The source code is released under:
Apache License
If you think the Android project kirin-for-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.futureplatforms.kirin.generated.location; // w ww . j a v a 2 s . c om import com.futureplatforms.kirin.generated.location.KirinLocationListener; /** * This is the backend of the location extension. This is implemented in native code, and talks to the js and the device. */ public interface KirinLocationBackend { /** * @param listener {@link KirinLocationListener} */ void startWithLocationListener(KirinLocationListener listener); void stopLocationListener(); void forceRefresh(); void getPermissions(); }