diff --git a/README.md b/README.md
index fe1c877..efc1d6c 100644
--- a/README.md
+++ b/README.md
@@ -28,10 +28,10 @@ repositories {
}
// Support
-implementation 'com.teprinciple:updateapputils:2.0.0'
+implementation 'com.teprinciple:updateapputils:2.0.1'
// AndroidX
-implementation 'com.teprinciple:updateapputilsX:2.0.0'
+implementation 'com.teprinciple:updateapputilsX:2.0.1'
```
### 使用
@@ -178,13 +178,6 @@ UpdateAppUtils在应用启动时,通过对比当前应用和已下载apk的Ver
### 更新日志
-#### 2.0.0
-* Kotlin重构
-* 支持AndroidX
-* 安装包签名文件md5校验
-* 通知栏自定义图标
-* 支持自定义UI
-* 适配中英文
-* 增加下载回调等api
-* 修复部分bug
+#### 2.0.1
+* 自定义FileProvide,防止provider冲突
##### [更多历史版本](https://github.com/teprinciple/UpdateAppUtils/blob/master/readme/version.md)
\ No newline at end of file
diff --git a/updateapputils/build.gradle b/updateapputils/build.gradle
index c787652..ebf1fd0 100644
--- a/updateapputils/build.gradle
+++ b/updateapputils/build.gradle
@@ -44,7 +44,7 @@ publish {
userOrg = 'teprinciple'
groupId = 'com.teprinciple'
artifactId = 'updateapputils'
- publishVersion = '2.0.0'
+ publishVersion = '2.0.1'
desc = 'A Simple library for Android update app'
website = 'https://github.com/teprinciple/UpdateAppUtils'
}
\ No newline at end of file
diff --git a/updateapputils/src/main/AndroidManifest.xml b/updateapputils/src/main/AndroidManifest.xml
index da86a78..cd7305e 100644
--- a/updateapputils/src/main/AndroidManifest.xml
+++ b/updateapputils/src/main/AndroidManifest.xml
@@ -27,7 +27,7 @@
diff --git a/updateapputils/src/main/java/update/UpdateFileProvider.kt b/updateapputils/src/main/java/update/UpdateFileProvider.kt
new file mode 100644
index 0000000..dc8588d
--- /dev/null
+++ b/updateapputils/src/main/java/update/UpdateFileProvider.kt
@@ -0,0 +1,10 @@
+package update
+
+import android.support.v4.content.FileProvider
+
+/**
+ * desc: UpdateFileProvider
+ * time: 2019/7/10
+ * @author Teprinciple
+ */
+class UpdateFileProvider : FileProvider()
\ No newline at end of file