Skip to content

Latest commit

 

History

History
125 lines (96 loc) · 4.01 KB

README_zh.md

File metadata and controls

125 lines (96 loc) · 4.01 KB

应用自动安装库

Android Arsenal

中文 | English

一个可以让您应用的自动更新功能更加优雅的静默安装库 !

别忘记给个赞支持一下哦 :)

特性

  • 只需要一行代码搞定您应用的后台静默下载和静默(自动)安装
AutoInstaller.getDefault(this).install(APK_FILE_PATH);
  • 两种自动安装方式: ROOT静默安装辅助功能自动模拟点击安装 ,并且能够自动选择可用方式

image

依赖

可以选择两种方式:

  • 克隆本项目,然后在你的IDE中依赖此项目即可
  • 只需要在build.gradle中添加一下代码即可(可能暂时无法使用):
   // 在项目根目录 build.gradle 添加
	allprojects {
		repositories {
			...
			maven { url "https://jitpack.io" }
		}
	}
	// 在App目录 build.gradle 添加依赖
   dependencies {
           compile 'com.github.a-voyager:AutoInstaller:v1.0'
   }

用法

  • 获取实例 可以直接获取默认实例,或者使用 AutoInstaller.builder 来构造一个实例
AutoInstaller installer = AutoInstaller.getDefault(this);
  • 注册事件监听
installer.setOnStateChangedListener(new AutoInstaller.OnStateChangedListener() {
    @Override
    public void onStart() {
        // 当后台安装线程开始时回调
        mProgressDialog.show();
    }
    @Override
    public void onComplete() {
        // 当请求安装完成时回调
        mProgressDialog.dismiss();
    }
    @Override
    public void onNeed2OpenService() {
        // 当需要用户手动打开 `辅助功能服务` 时回调
        // 可以在这里提示用户打开辅助功能
        Toast.makeText(MainActivity.this, "请打开辅助功能服务", Toast.LENGTH_SHORT).show();
    }
});
  • 安装过程 install() 是一个异步的方法, 携带 文件路径 或者 安装包HTTP下载地址 作为参数
// 文件路径
installer.install(APK_FILE_PATH);
// 或者HTTP下载地址
installer.installFromUrl(APK_URL);

更多

使用Builder构造器可以配置更多参数, 比如安装模式、缓存目录...

AutoInstaller installer = new AutoInstaller.Builder(this)
        .setMode(AutoInstaller.MODE.AUTO_ONLY)
        .setCacheDirectory(CACHE_FILE_PATH)
        .build();

更新

  1. 适配 Android O
  2. 修复高版本覆盖安装特性,感谢@雪松

赞助作者

Alipay

Weixin

License

The MIT License (MIT)

Copyright (c) 2015 WuHaojie

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.