diff --git a/README.md b/README.md index 8b12f16..13eddfc 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,23 @@ repositories { mavenCentral() } -dependencies { - implementation "org.lsposed.lsplant:lsplant:4.2" -} - android { buildFeatures { prefab true } } + +dependencies { + implementation "org.lsposed.lsplant:lsplant:5.0" +} +``` + +If you don't want to include `libc++_shared.so` in your APK, you can use `lsplant-standalone` instead: + +```gradle +dependencies { + implementation "org.lsposed.lsplant:lsplant-standalone:5.0" +} ``` ### 1. Init LSPlant within JNI_OnLoad diff --git a/lsplant/build.gradle.kts b/lsplant/build.gradle.kts index 7888cab..3ef4a13 100644 --- a/lsplant/build.gradle.kts +++ b/lsplant/build.gradle.kts @@ -160,7 +160,7 @@ publishing { publications { fun MavenPublication.setup() { group = "org.lsposed.lsplant" - version = "4.2" + version = "5.0" pom { name.set("LSPlant") description.set("A hook framework for Android Runtime (ART)")