1 Star 0 Fork 71

/AppUpdateModule

forked from Bvin/AppUpdateModule
Closed
 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
UpdateInfo.java 664 Bytes
Copy Edit Raw Blame History
Bvin authored 2015-05-06 19:46 +08:00 . 增加构造方法
package cn.bvin.lib.module.update;
public class UpdateInfo {
/**
* 检测更新信息
* @param version 版本号
* @param updateDesc 更新内容
* @param apkUrl 更新文件地址
* @param apkFileSize 更新文件大小
*/
public UpdateInfo(String version, String updateDesc, String apkUrl,
String apkFileSize) {
super();
this.version = version;
this.updateDesc = updateDesc;
this.apkUrl = apkUrl;
this.apkFileSize = apkFileSize;
}
public String version;// 版本号
public String updateDesc;// 更新内容
public String apkUrl;// 更新文件地址
public String apkFileSize;// 更新文件大小
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zilla/AppUpdateModule.git
git@gitee.com:zilla/AppUpdateModule.git
zilla
AppUpdateModule
AppUpdateModule
master

Search