16 lines
305 B
Java
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();
|
|
}
|