# XUpdate **Repository Path**: itxiaox/XUpdate ## Basic Information - **Project Name**: XUpdate - **Description**: 版本更新模块,将项目常见的版本更新功能封装成一个通用模块,便于以后在项目中复用, 提供普通更新安装,和静默安装功能(需要Root) - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-06-22 - **Last Updated**: 2025-04-06 ## Categories & Tags **Categories**: android-modules **Tags**: None ## README # XUpdate Android 版本更新功能 [![](https://jitpack.io/v/com.gitee.itxiaox/XUpdate.svg)](https://jitpack.io/#com.gitee.itxiaox/XUpdate) #### 介绍 版本更新模块,将项目常见的版本更新功能封装成一个通用模块,便于以后在项目中复用, 提供普通更新安装,和静默安装功能(需要Root) #### 使用说明 1. 在项目的根build.gradle文件中添加如下代码: ``` allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` 2. 在需要使用的module中添加依赖 ``` dependencies { implementation 'com.gitee.itxiaox:XUpdate:v1.0.4' } ``` 3. 代码中使用 待更新