UpdateDemo

Project Url: hugeterry/UpdateDemo
Introduction: 一个 http://fir.im 的 android app 自动更新库
More: Author   ReportBugs   DemoAPK   
Tags:
下载-

UpdateFun 是一个fir.im的 Android 更新下载模块,在fir.im上上传自己的 APP 后接入该库即可实现检查更新下载

License Download

用法

Step 1

在 gradle 文件中加入下面的依赖:

dependencies {
    compile 'cn.hugeterry.updatefun:updatefun:2.0.6'
}

如果你使用 Maven,那么加入下面的依赖:

<dependency>
  <groupId>cn.hugeterry.updatefun</groupId>
  <artifactId>updatefun</artifactId>
  <version>2.0.6</version>
  <type>pom</type>
</dependency>

Step 2

在主界面 activity 的 onCreate()中加上以下语句进行初始化(请放在 setContentView()方法的后面):

UpdateKey.API_TOKEN = "写上你 fir.im 账号的 API_TOKEN";
UpdateKey.APP_ID = "写上 APP 的应用 ID";
//下载方式:
//UpdateKey.DialogOrNotification=UpdateKey.WITH_DIALOG;通过 Dialog 来进行下载
//UpdateKey.DialogOrNotification=UpdateKey.WITH_NOTIFITION;通过通知栏来进行下载(默认)
UpdateFunGO.init(this);

Step 3

在主界面 Activity 中加上以下语句:

 @Override
    protected void onResume() {
        super.onResume();
        UpdateFunGO.onResume(this);
    }
  @Override
     protected void onStop() {
         super.onStop();
         UpdateFunGO.onStop(this);
     }

Step 4 (2.0.6 以上版本必须加,兼容 Android 7.0+,非 Android 7.0 的手机也要加)

在 app 文件夹下的 build.gradle 里添加:

android {
    defaultConfig {
        ...
        resValue "string", "updatefun_provider_file_authorities", "<packageName>.fileprovider"
    }
}

<packageName>为你的应用包名

大功告成,好好享用吧

其他功能

手动更新(需 1.8.4 以上版本)案例代码

请确保在你的 app 已添加依赖(见用法 Step 1), 并已经写上你 fir.im 账号的 API_TOKEN 以及 APP 的应用 ID(见用法 Step 2)

在需要手动更新时调用:

UpdateFunGO.manualStart(this);

并在手动更新的当前 Activity 添加上以下代码:

 @Override
    protected void onResume() {
        super.onResume();
        UpdateFunGO.onResume(this);
    }
  @Override
     protected void onStop() {
         super.onStop();
         UpdateFunGO.onStop(this);
     }

即可实现手动更新

Demo

http://fir.im/updatefun

LICENSE

Copyright 2016 HugeTerry.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Apps
About Me
GitHub: Trinea
Facebook: Dev Tools