├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── gradle-dependency-graph.yaml │ ├── publish-release.yml │ └── publish-snapshot.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── gu │ │ └── toolargetool │ │ └── sample │ │ ├── MainActivity.kt │ │ ├── TestFragment.kt │ │ └── TooLargeToolApplication.kt │ └── res │ ├── drawable │ └── border.xml │ ├── layout │ ├── activity_main.xml │ └── fragment_test.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 ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── toolargetool ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── gu │ └── toolargetool │ ├── ParcelableByteArray.kt │ └── TooLargeToolTest.kt └── main ├── AndroidManifest.xml └── java └── com └── gu └── toolargetool ├── ActivitySavedStateLogger.kt ├── Formatter.kt ├── FragmentSavedStateLogger.kt ├── Logger.kt ├── SizeTree.kt └── TooLargeTool.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-dependency-graph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/.github/workflows/gradle-dependency-graph.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/.github/workflows/publish-snapshot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/gu/toolargetool/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/java/com/gu/toolargetool/sample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gu/toolargetool/sample/TestFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/java/com/gu/toolargetool/sample/TestFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gu/toolargetool/sample/TooLargeToolApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/java/com/gu/toolargetool/sample/TooLargeToolApplication.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/drawable/border.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/layout/fragment_test.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /toolargetool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/.gitignore -------------------------------------------------------------------------------- /toolargetool/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/build.gradle.kts -------------------------------------------------------------------------------- /toolargetool/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/proguard-rules.pro -------------------------------------------------------------------------------- /toolargetool/src/androidTest/java/com/gu/toolargetool/ParcelableByteArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/androidTest/java/com/gu/toolargetool/ParcelableByteArray.kt -------------------------------------------------------------------------------- /toolargetool/src/androidTest/java/com/gu/toolargetool/TooLargeToolTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/androidTest/java/com/gu/toolargetool/TooLargeToolTest.kt -------------------------------------------------------------------------------- /toolargetool/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /toolargetool/src/main/java/com/gu/toolargetool/ActivitySavedStateLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/main/java/com/gu/toolargetool/ActivitySavedStateLogger.kt -------------------------------------------------------------------------------- /toolargetool/src/main/java/com/gu/toolargetool/Formatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/main/java/com/gu/toolargetool/Formatter.kt -------------------------------------------------------------------------------- /toolargetool/src/main/java/com/gu/toolargetool/FragmentSavedStateLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/main/java/com/gu/toolargetool/FragmentSavedStateLogger.kt -------------------------------------------------------------------------------- /toolargetool/src/main/java/com/gu/toolargetool/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/main/java/com/gu/toolargetool/Logger.kt -------------------------------------------------------------------------------- /toolargetool/src/main/java/com/gu/toolargetool/SizeTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/main/java/com/gu/toolargetool/SizeTree.kt -------------------------------------------------------------------------------- /toolargetool/src/main/java/com/gu/toolargetool/TooLargeTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/toolargetool/HEAD/toolargetool/src/main/java/com/gu/toolargetool/TooLargeTool.kt --------------------------------------------------------------------------------