version:1.4
update:2021-10-21 10:14:40 fix: add:增加浏览器桌面检测升级,修复重复请求
This commit is contained in:
@@ -4,9 +4,9 @@ import android.app.Service;
|
||||
import android.content.Intent;
|
||||
import android.os.IBinder;
|
||||
import android.os.RemoteException;
|
||||
import android.util.Log;
|
||||
|
||||
import com.aoleyun.sn.IGetLicenseInterface;
|
||||
import com.aoleyun.sn.utils.Logutils;
|
||||
import com.aoleyun.sn.utils.SPUtils;
|
||||
|
||||
public class RemoteService extends Service {
|
||||
@@ -17,7 +17,7 @@ public class RemoteService extends Service {
|
||||
|
||||
@Override
|
||||
public IBinder onBind(Intent intent) {
|
||||
Logutils.e(TAG, "onBind: ");
|
||||
Log.e(TAG, "onBind: ");
|
||||
return mBinde;
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ public class RemoteService extends Service {
|
||||
@Override
|
||||
public String getLicense() throws RemoteException {
|
||||
String ebagCode = (String) SPUtils.get(RemoteService.this, "ebagCode", "");
|
||||
Logutils.e(TAG, "getLicense: " + ebagCode);
|
||||
Log.e(TAG, "getLicense: " + ebagCode);
|
||||
return ebagCode;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user