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 1.3.7
Created 02 February 2024.
Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.FlyJingFish.AndroidAop.android-aop") version "1.3.7"
}
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:1.3.7") }
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:1.3.7") } } apply(plugin = "io.github.FlyJingFish.AndroidAop.android-aop")
- Applying plugins to all subprojects .