io.github.electrolytej.zposed-plugin
Owner: electrolytej
zposed-plugin
https://github.com/ghost-plan/attack-on-titan
Sources: https://github.com/electrolytej/attach-on-titan
Version 1.0.0 (latest)
1.0.0
Created 23 July 2024.
A plugin that helps you easy to hook android framework
Using the plugins DSL:
plugins {
id("io.github.electrolytej.zposed-plugin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.electrolytej:attach-gradle-plugin:1.0.0")
}
}
apply(plugin = "io.github.electrolytej.zposed-plugin")
Using the plugins DSL:
plugins {
id "io.github.electrolytej.zposed-plugin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.electrolytej:attach-gradle-plugin:1.0.0"
}
}
apply plugin: "io.github.electrolytej.zposed-plugin"