├── app ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.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 │ │ └── layout │ │ │ └── activity_example.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── hulab │ │ └── debugkit │ │ └── example │ │ └── ExampleActivity.java ├── build.gradle ├── proguard-rules.pro └── app.iml ├── debugkit ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── res │ │ ├── drawable │ │ │ ├── up.png │ │ │ ├── close.png │ │ │ ├── resize.png │ │ │ ├── rounded_frame.xml │ │ │ ├── rounded_button_light.xml │ │ │ └── rounded_button_dark.xml │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── layout │ │ │ ├── debugkit_function_button_light.xml │ │ │ ├── debugkit_function_button_dark.xml │ │ │ └── debugkit_fragment_dev_tools.xml │ │ └── java │ │ └── com │ │ └── hulab │ │ └── debugkit │ │ ├── DevTool.java │ │ ├── DebugFunction.java │ │ └── DevToolFragment.java ├── proguard-rules.pro ├── build.gradle └── debugkit.iml ├── settings.gradle ├── resources ├── screenshot.png ├── theme_dark.gif ├── theme_light.gif └── DebugKit-Example.apk ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .idea ├── markdown-navigator │ └── profiles_settings.xml ├── markdown-exported-files.xml └── markdown-navigator.xml ├── .gitignore ├── gradle.properties ├── DebugKitExample.iml ├── pom.xml ├── gradlew.bat ├── README.md ├── gradlew └── LICENSE /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /debugkit/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':debugkit' 2 | -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /resources/theme_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/resources/theme_dark.gif -------------------------------------------------------------------------------- /debugkit/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/theme_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/resources/theme_light.gif -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /resources/DebugKit-Example.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/resources/DebugKit-Example.apk -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /debugkit/src/main/res/drawable/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/debugkit/src/main/res/drawable/up.png -------------------------------------------------------------------------------- /debugkit/src/main/res/drawable/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/debugkit/src/main/res/drawable/close.png -------------------------------------------------------------------------------- /debugkit/src/main/res/drawable/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/debugkit/src/main/res/drawable/resize.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulab/debugkit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidKit 3 | AndroidKit Example 4 | 5 | -------------------------------------------------------------------------------- /.idea/markdown-exported-files.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #022735 4 | #000 5 | #7FA4B2 6 | 7 | -------------------------------------------------------------------------------- /debugkit/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DebugKit 3 | 4 | 5 | Dark 6 | Light 7 | 8 | 9 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 06 10:50:40 CEST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 7 | -------------------------------------------------------------------------------- /debugkit/src/main/res/drawable/rounded_frame.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /debugkit/src/main/res/drawable/rounded_button_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /debugkit/src/main/res/drawable/rounded_button_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea/ 3 | .DS_Store 4 | /captures 5 | .externalNativeBuild 6 | 7 | # Files for the ART/Dalvik VM 8 | *.dex 9 | 10 | # Java class files 11 | *.class 12 | 13 | # Generated files 14 | bin/ 15 | gen/ 16 | out/ 17 | 18 | # Gradle files 19 | .gradle/ 20 | build/ 21 | 22 | # Local configuration file (sdk path, etc) 23 | local.properties -------------------------------------------------------------------------------- /debugkit/src/main/res/layout/debugkit_function_button_light.xml: -------------------------------------------------------------------------------- 1 | 2 |