Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
v23.2 (52)
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed Jan 2, 2021
1 parent aee4d54 commit 6a0262a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions riru/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def minApiVersion = rootProject.ext.riruMinApiVersion
def moduleProp = [
id : "riru-core",
name : "Riru",
version : "v23.1",
versionCode: "51",
version : "v23.2",
versionCode: "52",
author : "Rikka",
description: "Inject into zygote process. Required by all \"Riru\" modules."
]
Expand Down Expand Up @@ -92,10 +92,10 @@ android.applicationVariants.all { variant ->
copy {
from "$rootDir/template/magisk_module"
into magiskDir.path
exclude 'customize.sh'
exclude 'customize.sh', 'util_functions.sh'
}
copy {
from file("$rootDir/template/magisk_module/customize.sh")
from file("$rootDir/template/magisk_module/customize.sh"), file("$rootDir/template/magisk_module/util_functions.sh")
into magiskDir.path
filter { line ->
line.replaceAll('%%%RIRU_API%%%', apiVersion.toString())
Expand Down
4 changes: 4 additions & 0 deletions template/magisk_module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ A typical example is, some "optimize" modules changes this property. Since chang

## Changelog

### v23.2 (52) (2021-01-02)

- Add `/data/adb/riru/util_functions.sh` for module installer to use

### v23.1 (51) (2020-12-18)

- Restart zygote even for the first time (for "broken environment", such as modules are loaded after than zygote is started)
Expand Down

0 comments on commit 6a0262a

Please sign in to comment.