android apk版本迭代,UpdateHelper: UpdateHelper是一个为了简化Android App的迭代升级开发的Android Library。...

UpdateHelperGithub项目地址

UpdateHelper是什么?

UpdateHelper是一个Android Library项目。

UpdateHelper是干什么的?

这个项目是为了简化Android App的迭代升级开发,任何一个项目只要引入这个library便集成了在线检查新版本的功能以及下载APK功能。

UpdateHelper要怎么使用?

1.首先服务器端需要提供一个接口,返回json数据格式如下:

{

"appName": "TestUpdate",

"versionCode": "1",

"versionName": "1.0",

"apkUrl": "http://java.linuxlearn.net/shelwee/Finances.apk",

"changeLog":"1.修复xxx Bug;\n2.更新UI界面.",

"updateTips": "更新提示"

}

2.客户端操作如下:

UpdateHelper updateHelper = new UpdateHelper.Builder(this)

.checkUrl("http://localhost/check.jsp")

.isAutoInstall(false) //设置为false需在下载完手动点击安装;默认值为true,下载后自动安装。

.build();

updateHelper.check();

/**

或者使用下面的方式,针对复杂需求的可重写回调方法

updateHelper.check(new OnUpdateListener() {

@Override

public void onStartDownload() {

// TODO Auto-generated method stub

}

@Override

public void onStartCheck() {

// TODO Auto-generated method stub

}

@Override

public void onFinshDownload() {

// TODO Auto-generated method stub

}

@Override

public void onFinishCheck(UpdateInfo info) {

// TODO Auto-generated method stub

}

@Override

public void onDownloading(int progress) {

// TODO Auto-generated method stub

}

});

*/

UpdateHelper需要哪些权限?

UpdateHelper原理是什么?

UpdateHelper通过接口返回的数据versionCode,与当前app的versionCode匹配,如果版本号比当前app的versionCode大,则存在新版本,弹出更新提示对话框;否则提示当前版本是最新版。

Note:当遇到网络中断或阻塞等问题时,处理方式也为提示当前版本是最新版。

截图

0ac6a9cb295893ae9561b014e29c0f75.png

53b0f8fffda34e144a0abfd46ff92848.png

65a541584e1df3a31422e57cb7655f7c.png

License

Copyright 2014 ShelWee(http://www.shelwee.com)

Licensed under the Apache License, Version 2.0 (the "License");

you may not use this file except in compliance with the License.

You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software

distributed under the License is distributed on an "AS IS" BASIS,

WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and

limitations under the License.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值