version:1.4

update:2021-10-21 10:14:40
fix:
add:增加浏览器桌面检测升级,修复重复请求
This commit is contained in:
2021-12-03 14:33:03 +08:00
parent 768519e14e
commit 34fa9fcdb7
70 changed files with 3189 additions and 1503 deletions

View File

@@ -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;
}
};