UnifiedNlp/client/src/main/aidl/org/microg/nlp/service/LocationCallback.aidl
2020-06-05 20:51:21 +02:00

13 lines
248 B
Plaintext

/*
* SPDX-FileCopyrightText: 2019, microG Project Team
* SPDX-License-Identifier: Apache-2.0
*/
package org.microg.nlp.service;
import android.location.Location;
interface LocationCallback {
void onLocationUpdate(in Location location);
}