add proguard

This commit is contained in:
unknown
2020-12-25 17:57:27 +08:00
parent b79b3a8bb1
commit c004d9cb19
12 changed files with 36 additions and 13 deletions

View File

@@ -42,6 +42,7 @@ interface IMogoHttpDns extends IProvider {
* @param type 类型
* @return
*/
@Keep
String getCachedHttpDnsIps(String host, int type);
//
// /**
@@ -60,6 +61,7 @@ interface IMogoHttpDns extends IProvider {
* @param useCache
* @param callback
*/
@Keep
void getHttpDnsIp(String host, int type, boolean useCache, IHttpDnsCallback callback);
// /**
@@ -76,6 +78,7 @@ interface IMogoHttpDns extends IProvider {
* @param type
* @param callback
*/
@Keep
void addHttpDnsTtlCallback(String host, int type, IHttpDnsTtlCallback callback);
// /**
@@ -90,5 +93,6 @@ interface IMogoHttpDns extends IProvider {
* @param host
* @param type
*/
@Keep
void removeHttpDnsTtlCallback(String host,int type);
}