本文整理汇总了Java中org.lzh.framework.updatepluginlib.UpdateConfig类的典型用法代码示例。如果您正苦于以下问题:Java UpdateConfig类的具体用法?Java UpdateConfig怎么用?Java UpdateConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UpdateConfig类属于org.lzh.framework.updatepluginlib包,在下文中一共展示了UpdateConfig类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import org.lzh.framework.updatepluginlib.UpdateConfig; //导入依赖的package包/类
@Override
public void onCreate() {
super.onCreate();
ButterKnife.setDebug(BuildConfig.DEBUG);
LogUtils.configAllowLog = BuildConfig.DEBUG;
LitePal.initialize(this);
//友盟
MobclickAgent.setScenarioType(this, MobclickAgent.EScenarioType.E_UM_NORMAL);
//自动更新
UpdateConfig.getConfig()
.init(this)
// 数据更新接口数据,此时默认为使用GET请求
.url(AppConfig.BASE_URL+AppConfig.Url.updateURL)
// 必填:用于从数据更新接口获取的数据response中。解析出Update实例。以便框架内部处理
.jsonParser(new UpdateParser() {
@Override
public Update parse(String response) {
// 此处根据上面url接口返回的数据response进行update类组装。框架内部会使用此
// 组装的update实例判断是否需要更新以做进一步工作
Update update = new Gson().fromJson(response,Update.class);
return update;
}
});
}
示例2: createCallbacks
import org.lzh.framework.updatepluginlib.UpdateConfig; //导入依赖的package包/类
@Override
protected RePluginCallbacks createCallbacks() {
return new UpdateRePluginCallbacks(this,
// 设置UpdateConfig。用于进行远程plugin更新。
UpdateConfig.createConfig()
.updateChecker(new PluginChecker())
.jsonParser(new JsonParser())
.strategy(new PluginStrategy()),
// 设置远程插件更新接口api组装。
new HostUpdateCombine());
}
示例3: UpdateRePluginCallbacks
import org.lzh.framework.updatepluginlib.UpdateConfig; //导入依赖的package包/类
public UpdateRePluginCallbacks(Context context, UpdateConfig updateConfig, IUpdateCombine combine) {
super(context);
this.updateConfig = updateConfig;
this.combine = combine;
}