compile 'com.androidkun:xversionupdate:1.0.6'
VersionUpdateConfig.getInstance()//获取配置实例
.setContext(MainActivity.this)//设置上下文
.setDownLoadURL(url)//设置文件下载链接
.setNewVersion("1.0.1")//设置即将下载的APK的版本号,避免重复下载
.setFileSavePath(savePath)//设置文件保存路径(可不设置)
.setNotificationIconRes(R.mipmap.app_icon)//设置通知图标
.setNotificationSmallIconRes(R.mipmap.app_icon_small)//设置通知小图标
.setNotificationTitle("版本升级Demo")//设置通知标题
.startDownLoad();//开始下载