当前位置: 首页>>代码示例>>Java>>正文


Java UpdateConfig类代码示例

本文整理汇总了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;
                }
            });
}
 
开发者ID:WeGdufe,项目名称:MovingGdufe-Android,代码行数:26,代码来源:AppContext.java

示例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());
}
 
开发者ID:yjfnypeu,项目名称:Router-RePlugin,代码行数:12,代码来源:HostApplication.java

示例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;
}
 
开发者ID:yjfnypeu,项目名称:Router-RePlugin,代码行数:6,代码来源:UpdateRePluginCallbacks.java


注:本文中的org.lzh.framework.updatepluginlib.UpdateConfig类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。