UnifiedNlp/api/src/org/microg/nlp/api/LocationBackend.aidl
mar-v-in 8ff926120c Major cleanup, Add support for Geocoder
Using spaces for indentation from now on
Add support for forced locations (debug)
2014-12-25 12:49:33 +01:00

11 lines
221 B
Plaintext

package org.microg.nlp.api;
import org.microg.nlp.api.LocationCallback;
import android.location.Location;
interface LocationBackend {
void open(LocationCallback callback);
Location update();
void close();
}