{"id":13608343,"url":"https://github.com/androidPluto/pluto","last_synced_at":"2025-04-12T14:32:41.523Z","repository":{"id":37954659,"uuid":"390471457","full_name":"androidPluto/pluto","owner":"androidPluto","description":"Android Pluto is a on-device debugging framework for Android applications, which helps intercept Network calls, capture Crashes \u0026 ANRs, manipulate application data on-the-go, and much more.","archived":false,"fork":false,"pushed_at":"2024-09-25T18:28:01.000Z","size":1528,"stargazers_count":663,"open_issues_count":23,"forks_count":67,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2024-10-29T22:31:54.487Z","etag":null,"topics":["android","android-debug-tools","android-development","android-library","android-sdk","datastore-preferences","http-requests","java","kotlin","kotlin-library","layout-builder","layoutmanager","mocklets","okhttp-interceptor","okhttp3","okhttpclient","pluto","pluto-debugger","room-database","shared-preferences"],"latest_commit_sha":null,"homepage":"https://androidpluto.com","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/androidPluto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-07-28T19:03:32.000Z","updated_at":"2024-10-24T23:50:13.000Z","dependencies_parsed_at":"2023-12-17T20:40:12.594Z","dependency_job_id":"5c0fa461-f77f-4752-8cdb-fce552732e75","html_url":"https://github.com/androidPluto/pluto","commit_stats":null,"previous_names":["androidpluto/pluto","plutolib/pluto"],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidPluto%2Fpluto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidPluto%2Fpluto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidPluto%2Fpluto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidPluto%2Fpluto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/androidPluto","download_url":"https://codeload.github.com/androidPluto/pluto/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248581356,"owners_count":21128155,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-debug-tools","android-development","android-library","android-sdk","datastore-preferences","http-requests","java","kotlin","kotlin-library","layout-builder","layoutmanager","mocklets","okhttp-interceptor","okhttp3","okhttpclient","pluto","pluto-debugger","room-database","shared-preferences"],"created_at":"2024-08-01T19:01:26.511Z","updated_at":"2025-04-12T14:32:41.518Z","avatar_url":"https://github.com/androidPluto.png","language":"Kotlin","readme":"# Android Pluto\n\n![Maven Central Version](https://img.shields.io/maven-central/v/com.androidpluto/pluto)\n[![CLA assistant](https://cla-assistant.io/readme/badge/androidPluto/pluto)](https://cla-assistant.io/androidPluto/pluto)\n[![Daily Builds](https://github.com/androidPluto/pluto/actions/workflows/daily_builds.yml/badge.svg)](https://github.com/androidPluto/pluto/actions/workflows/daily_builds.yml)\n\nPluto is an on-device debugging framework for Android applications, which helps in the inspection of HTTP requests/responses, captures Crashes, and ANRs, and manipulates application data on the go.\n\nIt comes with a UI to monitor and share the information, as well as APIs to access and use that information in your application.\n\n\u003cbr\u003e\n\n## 🖇 \u0026nbsp;Integrate Pluto in your application\n\n\n\n### Add Gradle Dependencies\n\nPluto is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto/pluto). To use it, you need to add the following Gradle dependency to your build.gradle file of your app module.\n\n\u003e Note: add both the `pluto` and the `pluto-no-op` variant to isolate Pluto from release builds.\n```groovy\ndef plutoVersion = \"3.0.0\"\n\ndependencies {\n  ....\n  debugImplementation \"com.androidpluto:pluto:$plutoVersion\"\n  releaseImplementation \"com.androidpluto:pluto-no-op:$plutoVersion\"\n  ....\n}\n```\n\n\n### Initialize Pluto\n\nNow to start using Pluto, initialize Pluto SDK from you application class by passing context to it.\n```kotlin\nPluto.Installer(this)\n  .addPlugin(....)\n  .install()\n```\n\n\n### Install plugins\n\nUnlike [version 1.x.x](https://github.com/androidPluto/pluto/wiki/Integrating-Pluto-1.x.x), Pluto now allows developers to add debuggers as plugin bundle or individual plugins based on their need.\n\nPlugin bundle comes with all the basic plugins bundled together as single dependency.\n```groovy\ndependencies {\n  ....\n  debugImplementation \"com.androidpluto.plugins:bundle-core:$plutoVersion\"\n  releaseImplementation \"com.androidpluto.plugins:bundle-core-no-op:$plutoVersion\"\n  ....\n}\n```\n\nBut, if you want to use individual plugins, here is the list of some plugins provided by us\n\n- **[Network Plugin](pluto-plugins/plugins/network)**\n- **[Exceptions \u0026 Crashes Plugin](pluto-plugins/plugins/exceptions)**\n- **[Logger Plugin](pluto-plugins/plugins/logger)**\n- **[Shared Preferences Plugin](pluto-plugins/plugins/shared-preferences)**\n- **[Rooms Database Plugin](pluto-plugins/plugins/rooms-database)**\n- **[Datastore Preferences Plugin](pluto-plugins/plugins/datastore)**\n- **[Layout Inspector Plugin](pluto-plugins/plugins/layout-inspector)**\n\nWe will be adding more to the [list](https://central.sonatype.com/search?q=com.androidpluto.plugins). So please stay tuned.\u003cbr\u003e\nPlease refer to their respective README for integration steps.\n\u003cbr\u003e\u003cbr\u003e\n\u003e You can also help us expand the Pluto ecosystem now. \u003cbr\u003ePluto now allows to develop custom debuggers as plugin. Read [Develop Custom Plugins](https://github.com/androidPluto/pluto/wiki/Develop-Custom-Pluto-Plugins-(Beta)).\n\n\u003cbr\u003e\n\n🎉 \u0026nbsp;You are all set!\n\nNow re-build and run your app, you will receive a notification from Pluto, use it to access Pluto UI.\n\n\u003cbr\u003e\n\n## Grouping Plugins *(Optional)*\nPluto now allows to group similar plugins together to have better readability \u0026 categorization.\n\u003cbr\u003e\nTo create a group, we need to override PluginGroup \u0026 attach Plugins to it. *(We have taken the example of grouping datasource plugins together)*\n\n```kotlin\nclass DataSourcePluginGroup : PluginGroup(\"datasource-group\") {\n\n    override fun getConfig() = PluginGroupConfiguration(\n        name = \"DataSource Group\"\n    )\n\n    override fun getPlugins() = listOf(\n        PlutoSharePreferencesPlugin(),\n        PlutoDatastorePreferencesPlugin(),\n        PlutoRoomsDatabasePlugin()\n    )\n}\n```\n\nThen add the group to Plugin installer.\n```kotlin\nPluto.Installer(this)\n  .addPluginGroup(DataSourcePluginGroup())\n  .install()\n```\n\n\u003cbr\u003e\n\n## 📝 \u0026nbsp;Contribution\n\n**We're looking for contributors, help us improve Pluto.** 😁 \n\nPlease refer to your [`Contribution guidelines`](/CONTRIBUTING.md) to get started.\n\n\u003cbr\u003e\n\nHave an idea to improve Pluto? Let's connect on \n- [Twitter](https://twitter.com/srtv_prateek)\n- [Github](https://github.com/srtvprateek)\n\n\u003cbr\u003e\n\n\n## 📃 \u0026nbsp;License\n\n```\nCopyright 2021 Android Pluto.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","funding_links":[],"categories":["Kotlin"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FandroidPluto%2Fpluto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FandroidPluto%2Fpluto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FandroidPluto%2Fpluto/lists"}