Android 检查更新库
Step 1.配置 jitpack 仓库
在根目录的gradle.build
中添加 jitpack 地址:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. 添加库依赖:
dependencies {
compile 'com.github.fccaikai:AppUpdate:2.0.1'
}
UpdateWrapper updateWrapper = new UpdateWrapper.Builder(getApplicationContext())
//set interval Time
.setTime(time)
//set notification icon
.setNotificationIcon(R.mipmap.ic_launcher_round)
//set update file url
.setUrl("you update json file url").build();
updateWrapper.start();
升级 json 文件格式:
{
"versionCode":1,
"versionName":"1.0.0",
"content":"1.新增抢单功能#2.性能优化",//使用 # 来进行换行
"mustUpdate":true, //是否强制 ,true or false
"url":"apk download url"
}
UpdateActivity
,并重写protected Fragment getUpdateDialogFragment()
方法,比如:public class CustomsUpdateActivity extends UpdateActivity {
@Override
protected Fragment getUpdateDialogFragment() {
return CustomsUpdateFragment.newInstance(mModel);
}
}
设置主题
Activity 需要设置为 Dialog 主题,在Androidmanifest.xml
中注册 Activity 中设置主题
<activity
android:name=".CustomsUpdateActivity"
android:theme="@style/UpdateDialog">
</activity>
自定义 FragmentDialog
创建一个 FragmentDialog,继承自UpdateDialog
,代码如下:
public class CustomsUpdateFragment extends UpdateDialog {
public static CustomsUpdateFragment newInstance(VersionModel model) {
Bundle args = new Bundle();
args.putSerializable(Constant.MODEL, model);
CustomsUpdateFragment fragment = new CustomsUpdateFragment();
fragment.setArguments(args);
return fragment;
}
@Override
protected int getLayout() {
return R.layout.fragment_update_dialog;
}
@Override
protected void setContent(View view, int contentId) {
super.setContent(view, R.id.content);
}
@Override
protected void bindUpdateListener(View view, int updateId) {
super.bindUpdateListener(view, R.id.update);
}
@Override
protected void bindCancelListener(View view, int cancelId) {
super.bindCancelListener(view, R.id.cancel);
}
@Override
protected void initIfMustUpdate(View view, int id) {
super.initIfMustUpdate(view, R.id.cancel);
}
}
UpdateWrapper.Builder builder = ...;
builder.setCustomsActivity(CustomsUpdateActivity.class);
...
builder.build().start();
具体使用请查看demo
compile 'com.android.support:appcompat-v7:25.2.0'
如果你不想使用这两个库,可以使用exclude
排除
源码地址:AppUpdate
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.