Search Gradle plugins

Wires the debug-only Porthole runtime into an Android app, generates its port resource, and owns the adb forward that the timeline UI and the MCP server connect through. Release builds get a no-op artifact with the same API.

https://github.com/gravityrepos/porthole

Sources: https://github.com/gravityrepos/porthole.git

Version 0.1.0

Created 14 September 2026.

Wires the debug-only Porthole runtime into an Android app, generates its port resource, and owns the adb forward that the timeline UI and the MCP server connect through. Release builds get a no-op artifact with the same API.

Add this plugin to your build using the plugins DSL:

plugins {
  id("live.gravitylabs.porthole") version "0.1.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("live.gravitylabs.porthole:live.gravitylabs.porthole.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("live.gravitylabs.porthole")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("live.gravitylabs.porthole:live.gravitylabs.porthole.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "live.gravitylabs.porthole")
  • Applying plugins to all subprojects .