|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
package com.example.beijing_daxing.base;
|
|
|
|
|
|
|
|
|
|
import static com.xuexiang.xupdate.entity.UpdateError.ERROR.CHECK_NO_NEW_VERSION;
|
|
|
|
|
|
|
|
|
|
import android.app.Application;
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
|
@ -13,6 +15,13 @@ import com.lzy.okgo.cookie.CookieJarImpl;
|
|
|
|
|
import com.lzy.okgo.cookie.store.MemoryCookieStore;
|
|
|
|
|
import com.lzy.okgo.https.HttpsUtils;
|
|
|
|
|
import com.lzy.okgo.interceptor.HttpLoggingInterceptor;
|
|
|
|
|
import com.xuexiang.xupdate.XUpdate;
|
|
|
|
|
|
|
|
|
|
import com.xuexiang.xupdate.easy.service.OkHttpUpdateHttpServiceImpl;
|
|
|
|
|
import com.xuexiang.xupdate.entity.UpdateError;
|
|
|
|
|
import com.xuexiang.xupdate.listener.OnUpdateFailureListener;
|
|
|
|
|
import com.xuexiang.xupdate.proxy.IUpdateHttpService;
|
|
|
|
|
import com.xuexiang.xupdate.utils.UpdateUtils;
|
|
|
|
|
|
|
|
|
|
import org.litepal.LitePal;
|
|
|
|
|
|
|
|
|
@ -39,6 +48,17 @@ public class MyApplication extends Application {
|
|
|
|
|
SharedPreferencesUtils.init(getApplicationContext(), "myapp");
|
|
|
|
|
okGoBase();
|
|
|
|
|
getUhfLongerManager();
|
|
|
|
|
XUpdate.get()
|
|
|
|
|
.debug(true)
|
|
|
|
|
.isWifiOnly(false) //默认设置只在wifi下检查版本更新
|
|
|
|
|
.isGet(true) //默认设置使用get请求检查版本
|
|
|
|
|
.isAutoMode(false) //默认设置非自动模式,可根据具体使用配置
|
|
|
|
|
// .param("versionCode", UpdateUtils.getVersionCode(this)) //设置默认公共请求参数
|
|
|
|
|
// .param("appKey", getPackageName())
|
|
|
|
|
|
|
|
|
|
.supportSilentInstall(false) //设置是否支持静默安装,默认是true
|
|
|
|
|
.setIUpdateHttpService(new OkHttpUpdateHttpServiceImpl()) //这个必须设置!实现网络请求功能。
|
|
|
|
|
.init(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static UHFRManager getUhfLongerManager() {
|
|
|
|
|