项目作者: oxsource

项目描述 :
安卓应用升级库
高级语言: Java
项目地址: git://github.com/oxsource/updater.git
创建时间: 2017-09-25T09:57:50Z
项目社区:https://github.com/oxsource/updater

开源协议:

下载


说明

这是一个安卓应用程序检查、下载、更新模块

集成

首先,在工程目录下的build.gradle中添加jitpack.io仓库地址

  1. allprojects {
  2. repositories {
  3. ...
  4. maven { url 'https://jitpack.io' }
  5. }
  6. }
然后,在你的应用模块目录下添加updater远程依赖
  1. dependencies {
  2. compile 'com.github.dida-logistics-mobile:updater:1.0.0'
  3. }