io.github.FlyJingFish.AndroidAop.android-aop
Owner: FlyJingFish
Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat
https://github.com/FlyJingFish/AndroidAOP
Sources: https://github.com/FlyJingFish/AndroidAop.git
Version 2.3.4 (latest)
Created 26 December 2024.
Help you transform into an Android platform framework with AOP architecture
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.4"
}
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.github.FlyJingFish.AndroidAop.android-aop:io.github.FlyJingFish.AndroidAop.android-aop.gradle.plugin:2.3.4") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.FlyJingFish.AndroidAop.android-aop") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.FlyJingFish.AndroidAop.android-aop:io.github.FlyJingFish.AndroidAop.android-aop.gradle.plugin:2.3.4") } } apply(plugin = "io.github.FlyJingFish.AndroidAop.android-aop")
- Applying plugins to all subprojects .