Files
MoGoEagleEye/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsLocationChanged.java
2021-01-22 09:58:22 +08:00

16 lines
305 B
Java

package com.mogo.httpdns;
import android.location.Location;
import androidx.annotation.Keep;
import com.mogo.utils.httpdns.HttpSimpleLocation;
@Keep
public interface IHttpDnsLocationChanged {
/**
* 获取当前定位
* @return 当前定位
*/
HttpSimpleLocation getLocation();
}