https://github.com/ipcjs/android-universal-explorer
Sample's Explorer
https://github.com/ipcjs/android-universal-explorer
Last synced: about 1 year ago
JSON representation
Sample's Explorer
- Host: GitHub
- URL: https://github.com/ipcjs/android-universal-explorer
- Owner: ipcjs
- Created: 2015-12-03T12:16:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-08T05:49:49.000Z (over 2 years ago)
- Last Synced: 2025-03-18T15:03:01.852Z (about 1 year ago)
- Language: Java
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Universal Explorer
======
[](https://jitpack.io/#ipcjs/android-universal-explorer)
## 介绍
只是个用来快速写Demo的工具~~
## 使用
### gradle配置
```groovy
dependencies {
implementation 'com.github.ipcjs:android-universal-explorer:1.1.4'
}
repositories {
maven { url "https://jitpack.io" }
}
```
### ProGurad配置
防止用于生成菜单的方法被shinking~~
```progurad
# MenuItem
-keep interface com.github.ipcjs.explorer.menu.MenuCreator$MenuItem
-keepclassmembers class * {
@com.github.ipcjs.explorer.menu.MenuCreator$MenuItem *;
}
```
### 从`0.*.*`版升级到`1.*.*`版的方式
全局替换 `com\.ipcjs\.(explorer(sample)?)([;."])` 成 `com\.github\.ipcjs\.$1$3`