├── .editorconfig ├── .github └── workflows │ ├── android-ci.yml │ └── claude-review.yml ├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── PUBLISHING.md ├── README.md ├── art ├── readme_sample_app_demo.gif └── readme_simple_demo.gif ├── config └── detekt │ └── detekt.yml ├── debugoverlay-androidx-startup ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── ms │ └── square │ └── debugoverlay │ └── DebugOverlayStartupInitializer.kt ├── debugoverlay-core ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── ms │ │ └── square │ │ └── debugoverlay │ │ ├── DebugOverlay.kt │ │ ├── NetworkRequestTracker.kt │ │ ├── internal │ │ ├── Logger.kt │ │ ├── OverlayLifecycleOwner.kt │ │ ├── OverlayViewManager.kt │ │ ├── data │ │ │ ├── DebugOverlayDataRepository.kt │ │ │ ├── EvictingQueue.kt │ │ │ ├── Percentage.kt │ │ │ ├── TextType.kt │ │ │ ├── UrlParts.kt │ │ │ ├── model │ │ │ │ ├── DebugOverlayPanelMetrics.kt │ │ │ │ ├── DeviceInfo.kt │ │ │ │ ├── LogcatEntry.kt │ │ │ │ ├── Metrics.kt │ │ │ │ └── NetworkStats.kt │ │ │ └── source │ │ │ │ ├── CpuDataSource.kt │ │ │ │ ├── DebugOverlayPanelDataSource.kt │ │ │ │ ├── DeviceInfoDataSource.kt │ │ │ │ ├── FpsDataSource.kt │ │ │ │ ├── LogcatDataSource.kt │ │ │ │ ├── MemoryDataSource.kt │ │ │ │ └── NetStatsDataSource.kt │ │ ├── ui │ │ │ ├── AutoScrollManager.kt │ │ │ ├── BackButton.kt │ │ │ ├── Badges.kt │ │ │ ├── DebugOverlayPanel.kt │ │ │ ├── DebugOverlayPanelPreviews.kt │ │ │ ├── DebugPanelActivity.kt │ │ │ ├── DebugPanelDialog.kt │ │ │ ├── DetailNavigation.kt │ │ │ ├── DeviceInfoTabContent.kt │ │ │ ├── Fabs.kt │ │ │ ├── LineGraph.kt │ │ │ ├── LogEntryDetailScreen.kt │ │ │ ├── LogcatTabContent.kt │ │ │ ├── MetricRow.kt │ │ │ ├── NetworkRequestDetailScreen.kt │ │ │ ├── NetworkTabContent.kt │ │ │ ├── SearchField.kt │ │ │ └── Texts.kt │ │ └── util │ │ │ ├── Clipboards.kt │ │ │ ├── Colors.kt │ │ │ ├── Configurations.kt │ │ │ ├── Contexts.kt │ │ │ ├── DeviceRootDetector.kt │ │ │ ├── Displays.kt │ │ │ ├── Flows.kt │ │ │ ├── Formatters.kt │ │ │ ├── HttpStatusCodes.kt │ │ │ ├── MainProcessChecker.kt │ │ │ ├── MainThreadChecker.kt │ │ │ └── TimeUnits.kt │ │ └── model │ │ └── NetworkRequest.kt │ └── res │ └── values │ ├── strings.xml │ └── themes.xml ├── debugoverlay-extension-okhttp ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── ms │ └── square │ └── debugoverlay │ └── extension │ └── okhttp │ ├── DebugOverlayNetworkInterceptor.kt │ └── internal │ └── BufferedSources.kt ├── debugoverlay ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── ms │ └── square │ └── debugoverlay │ └── internal │ └── DebugOverlayInstaller.kt ├── gradle.properties ├── gradle ├── libs.versions.toml ├── scripts │ └── code-formatting.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sample ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── debug │ └── kotlin │ │ └── com │ │ └── ms │ │ └── square │ │ └── debugoverlay │ │ └── sample │ │ ├── SampleApplication.kt │ │ └── di │ │ └── AppModule.kt │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── ms │ │ │ └── square │ │ │ └── debugoverlay │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ ├── data │ │ │ ├── model │ │ │ │ └── FeedItem.kt │ │ │ ├── repository │ │ │ │ └── FeedRepository.kt │ │ │ └── source │ │ │ │ └── AndroidWeeklyDataSource.kt │ │ │ └── ui │ │ │ ├── components │ │ │ └── FeedItemCard.kt │ │ │ ├── feeditemdetail │ │ │ ├── CoilImageGetter.kt │ │ │ ├── FeedItemDetailScreen.kt │ │ │ └── FeedItemDetailViewModel.kt │ │ │ ├── feedlist │ │ │ ├── FeedListScreen.kt │ │ │ └── FeedListViewModel.kt │ │ │ ├── navigation │ │ │ └── NavGraph.kt │ │ │ └── theme │ │ │ └── Theme.kt │ └── res │ │ ├── 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 │ │ ├── strings.xml │ │ └── styles.xml │ └── release │ └── kotlin │ └── com │ └── ms │ └── square │ └── debugoverlay │ └── sample │ ├── SampleApplication.kt │ └── di │ └── AppModule.kt └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/android-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/.github/workflows/android-ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/.github/workflows/claude-review.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/PUBLISHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/README.md -------------------------------------------------------------------------------- /art/readme_sample_app_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/art/readme_sample_app_demo.gif -------------------------------------------------------------------------------- /art/readme_simple_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/art/readme_simple_demo.gif -------------------------------------------------------------------------------- /config/detekt/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/config/detekt/detekt.yml -------------------------------------------------------------------------------- /debugoverlay-androidx-startup/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /debugoverlay-androidx-startup/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-androidx-startup/build.gradle.kts -------------------------------------------------------------------------------- /debugoverlay-androidx-startup/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-androidx-startup/gradle.properties -------------------------------------------------------------------------------- /debugoverlay-androidx-startup/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-androidx-startup/proguard-rules.pro -------------------------------------------------------------------------------- /debugoverlay-androidx-startup/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-androidx-startup/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /debugoverlay-androidx-startup/src/main/kotlin/com/ms/square/debugoverlay/DebugOverlayStartupInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-androidx-startup/src/main/kotlin/com/ms/square/debugoverlay/DebugOverlayStartupInitializer.kt -------------------------------------------------------------------------------- /debugoverlay-core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /debugoverlay-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/build.gradle.kts -------------------------------------------------------------------------------- /debugoverlay-core/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/gradle.properties -------------------------------------------------------------------------------- /debugoverlay-core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/proguard-rules.pro -------------------------------------------------------------------------------- /debugoverlay-core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/DebugOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/DebugOverlay.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/NetworkRequestTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/NetworkRequestTracker.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/Logger.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/OverlayLifecycleOwner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/OverlayLifecycleOwner.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/OverlayViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/OverlayViewManager.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/DebugOverlayDataRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/DebugOverlayDataRepository.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/EvictingQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/EvictingQueue.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/Percentage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/Percentage.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/TextType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/TextType.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/UrlParts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/UrlParts.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/DebugOverlayPanelMetrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/DebugOverlayPanelMetrics.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/DeviceInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/DeviceInfo.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/LogcatEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/LogcatEntry.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/Metrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/Metrics.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/NetworkStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/model/NetworkStats.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/CpuDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/CpuDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/DebugOverlayPanelDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/DebugOverlayPanelDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/DeviceInfoDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/DeviceInfoDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/FpsDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/FpsDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/LogcatDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/LogcatDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/MemoryDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/MemoryDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/NetStatsDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/data/source/NetStatsDataSource.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/AutoScrollManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/AutoScrollManager.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/BackButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/BackButton.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/Badges.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/Badges.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugOverlayPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugOverlayPanel.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugOverlayPanelPreviews.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugOverlayPanelPreviews.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugPanelActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugPanelActivity.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugPanelDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DebugPanelDialog.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DetailNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DetailNavigation.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DeviceInfoTabContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/DeviceInfoTabContent.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/Fabs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/Fabs.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/LineGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/LineGraph.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/LogEntryDetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/LogEntryDetailScreen.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/LogcatTabContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/LogcatTabContent.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/MetricRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/MetricRow.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/NetworkRequestDetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/NetworkRequestDetailScreen.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/NetworkTabContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/NetworkTabContent.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/SearchField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/SearchField.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/Texts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/ui/Texts.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Clipboards.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Clipboards.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Colors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Colors.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Configurations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Configurations.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Contexts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Contexts.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/DeviceRootDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/DeviceRootDetector.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Displays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Displays.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Flows.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Flows.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Formatters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/Formatters.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/HttpStatusCodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/HttpStatusCodes.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/MainProcessChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/MainProcessChecker.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/MainThreadChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/MainThreadChecker.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/TimeUnits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/internal/util/TimeUnits.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/model/NetworkRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/kotlin/com/ms/square/debugoverlay/model/NetworkRequest.kt -------------------------------------------------------------------------------- /debugoverlay-core/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /debugoverlay-core/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-core/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-extension-okhttp/build.gradle.kts -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-extension-okhttp/proguard-rules.pro -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/src/main/kotlin/com/ms/square/debugoverlay/extension/okhttp/DebugOverlayNetworkInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-extension-okhttp/src/main/kotlin/com/ms/square/debugoverlay/extension/okhttp/DebugOverlayNetworkInterceptor.kt -------------------------------------------------------------------------------- /debugoverlay-extension-okhttp/src/main/kotlin/com/ms/square/debugoverlay/extension/okhttp/internal/BufferedSources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay-extension-okhttp/src/main/kotlin/com/ms/square/debugoverlay/extension/okhttp/internal/BufferedSources.kt -------------------------------------------------------------------------------- /debugoverlay/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /debugoverlay/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay/build.gradle.kts -------------------------------------------------------------------------------- /debugoverlay/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay/gradle.properties -------------------------------------------------------------------------------- /debugoverlay/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay/proguard-rules.pro -------------------------------------------------------------------------------- /debugoverlay/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /debugoverlay/src/main/kotlin/com/ms/square/debugoverlay/internal/DebugOverlayInstaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/debugoverlay/src/main/kotlin/com/ms/square/debugoverlay/internal/DebugOverlayInstaller.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/scripts/code-formatting.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradle/scripts/code-formatting.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | ms-square-release.keystore -------------------------------------------------------------------------------- /sample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/build.gradle.kts -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/debug/kotlin/com/ms/square/debugoverlay/sample/SampleApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/debug/kotlin/com/ms/square/debugoverlay/sample/SampleApplication.kt -------------------------------------------------------------------------------- /sample/src/debug/kotlin/com/ms/square/debugoverlay/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/debug/kotlin/com/ms/square/debugoverlay/sample/di/AppModule.kt -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/data/model/FeedItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/data/model/FeedItem.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/data/repository/FeedRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/data/repository/FeedRepository.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/data/source/AndroidWeeklyDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/data/source/AndroidWeeklyDataSource.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/components/FeedItemCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/components/FeedItemCard.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feeditemdetail/CoilImageGetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feeditemdetail/CoilImageGetter.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feeditemdetail/FeedItemDetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feeditemdetail/FeedItemDetailScreen.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feeditemdetail/FeedItemDetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feeditemdetail/FeedItemDetailViewModel.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feedlist/FeedListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feedlist/FeedListScreen.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feedlist/FeedListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/feedlist/FeedListViewModel.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/navigation/NavGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/navigation/NavGraph.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/kotlin/com/ms/square/debugoverlay/sample/ui/theme/Theme.kt -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/release/kotlin/com/ms/square/debugoverlay/sample/SampleApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/release/kotlin/com/ms/square/debugoverlay/sample/SampleApplication.kt -------------------------------------------------------------------------------- /sample/src/release/kotlin/com/ms/square/debugoverlay/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/sample/src/release/kotlin/com/ms/square/debugoverlay/sample/di/AppModule.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manabu-GT/DebugOverlay-Android/HEAD/settings.gradle.kts --------------------------------------------------------------------------------