Owner:
dingbaosheng
A plugin adapted for Alibaba's routing framework ARouter (compatible with AGP 8.3.0) The official routing plugin arouter-register of the routing framework hosted at https://github.com/alibaba/ARouter is currently at version 1.0.2, which does not support AGP 8.x.x. This plugin is designed to address this issue. It applies to projects that encounter the problem of being unable to use the official arouter-register plugin after upgrading AGP to 8.x.x.
Version 1.0.0 (latest)
Created 03 December 2025.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.gitee.bsding.arouter") version "1.0.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("io.gitee.bsding.arouter:io.gitee.bsding.arouter.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("io.gitee.bsding.arouter") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.gitee.bsding.arouter:io.gitee.bsding.arouter.gradle.plugin:1.0.0") } } apply(plugin = "io.gitee.bsding.arouter") - Applying plugins to all subprojects .