版本更新

//导入依赖

compile 'com.androidkun:xversionupdate:1.0.4'

//调用API实现版本更新

 VersionUpdateConfig.getInstance()//获取配置实例
           .setContext(MainActivity.this)//设置上下文
           .setDownLoadURL(url)//设置文件下载链接
           .setFileSavePath(savePath)//设置文件保存路径(可不设置)
           .setNotificationIconRes(R.mipmap.app_icon)//设置通知图标
           .setNotificationSmallIconRes(R.mipmap.app_icon_small)//设置通知小图标
           .setNotificationTitle("版本升级Demo")//设置通知标题
           .startDownLoad();//开始下载

 

posted on 2017-09-15 10:08  权威的程序  阅读(291)  评论(0编辑  收藏  举报