├── .circleci └── config.yml ├── .gitignore ├── .project ├── .travis.yml ├── README - cn.md ├── README.md ├── app ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── allen │ │ └── supperutils │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── apputils ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── allen │ │ └── apputils │ │ ├── AppManger.java │ │ ├── Arith.java │ │ ├── BitmapUtil.java │ │ ├── BtnClickUtils.java │ │ ├── CheckViewInRange.java │ │ ├── DataCleanManager.java │ │ ├── DataUtil.java │ │ ├── DateTimeUtil.java │ │ ├── DigestUtils.java │ │ ├── Hex.java │ │ ├── IOUtil.java │ │ ├── LogInfo.java │ │ ├── MLog.java │ │ ├── NetUtils.java │ │ ├── NumberUtil.java │ │ ├── PaintUtil.java │ │ ├── RegexUtils.java │ │ ├── ScreenListener.java │ │ ├── ScreenUtil.java │ │ ├── SecretUtils.java │ │ ├── StatusBarUtils.java │ │ ├── ToastUtils.java │ │ ├── ToolResource.java │ │ ├── TouchEventUtil.java │ │ ├── Utils.java │ │ └── WeakRefHander.java │ └── res │ └── values │ └── strings.xml ├── dbutils ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── allen │ │ └── dbutils │ │ └── Utils.java │ └── res │ └── values │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mediautil ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── allen │ │ └── mediautil │ │ ├── ImageTakerHelper.java │ │ └── Utils.java │ └── res │ └── values │ └── strings.xml ├── settings.gradle └── uploadSource.gradle /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/.project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/.travis.yml -------------------------------------------------------------------------------- /README - cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/README - cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/README.md -------------------------------------------------------------------------------- /app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/.classpath -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/.project -------------------------------------------------------------------------------- /app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/allen/supperutils/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/java/com/allen/supperutils/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apputils/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/.classpath -------------------------------------------------------------------------------- /apputils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apputils/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/.project -------------------------------------------------------------------------------- /apputils/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /apputils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/build.gradle -------------------------------------------------------------------------------- /apputils/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/proguard-rules.pro -------------------------------------------------------------------------------- /apputils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/AppManger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/AppManger.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/Arith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/Arith.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/BitmapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/BitmapUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/BtnClickUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/BtnClickUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/CheckViewInRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/CheckViewInRange.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/DataCleanManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/DataCleanManager.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/DataUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/DataUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/DateTimeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/DateTimeUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/DigestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/DigestUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/Hex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/Hex.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/IOUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/IOUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/LogInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/LogInfo.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/MLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/MLog.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/NetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/NetUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/NumberUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/NumberUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/PaintUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/PaintUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/RegexUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/RegexUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/ScreenListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/ScreenListener.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/ScreenUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/ScreenUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/SecretUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/SecretUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/StatusBarUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/StatusBarUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/ToastUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/ToastUtils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/ToolResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/ToolResource.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/TouchEventUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/TouchEventUtil.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/Utils.java -------------------------------------------------------------------------------- /apputils/src/main/java/com/allen/apputils/WeakRefHander.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/java/com/allen/apputils/WeakRefHander.java -------------------------------------------------------------------------------- /apputils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/apputils/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dbutils/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/.classpath -------------------------------------------------------------------------------- /dbutils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /dbutils/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/.project -------------------------------------------------------------------------------- /dbutils/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /dbutils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/build.gradle -------------------------------------------------------------------------------- /dbutils/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/proguard-rules.pro -------------------------------------------------------------------------------- /dbutils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dbutils/src/main/java/com/allen/dbutils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/src/main/java/com/allen/dbutils/Utils.java -------------------------------------------------------------------------------- /dbutils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/dbutils/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mediautil/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/.classpath -------------------------------------------------------------------------------- /mediautil/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /mediautil/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/.project -------------------------------------------------------------------------------- /mediautil/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /mediautil/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/build.gradle -------------------------------------------------------------------------------- /mediautil/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/proguard-rules.pro -------------------------------------------------------------------------------- /mediautil/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mediautil/src/main/java/com/allen/mediautil/ImageTakerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/src/main/java/com/allen/mediautil/ImageTakerHelper.java -------------------------------------------------------------------------------- /mediautil/src/main/java/com/allen/mediautil/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/src/main/java/com/allen/mediautil/Utils.java -------------------------------------------------------------------------------- /mediautil/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/mediautil/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/settings.gradle -------------------------------------------------------------------------------- /uploadSource.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCoder/SuperUtils/HEAD/uploadSource.gradle --------------------------------------------------------------------------------