-
Notifications
You must be signed in to change notification settings - Fork 20
/
module.example.gradle
31 lines (25 loc) · 1.06 KB
/
module.example.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ext {
/*
This name will be used in the name of the so file ("lib${moduleLibraryName}.so").
*/
moduleLibraryName = "SsageDemo"
/* Minimal supported Riru API version, used in the version check of riru.sh */
moduleMinRiruApiVersion = 24
/* The version name of minimal supported Riru, used in the version check of riru.sh */
moduleMinRiruVersionName = "v24.0.0"
/* Maximum supported Riru API version, used in the version check of riru.sh */
moduleRiruApiVersion = 26
/*
Magisk module ID
Since Magisk use it to distinguish different modules, you should never change it.
Note, the older version of the template uses '-' instead of '_', if your are upgrading from
the older version, please pay attention.
*/
magiskModuleId = "SsageHook"
moduleName = "Riru_SsageHook"
moduleAuthor = "SsageParuders"
moduleDescription = "Riru module to hook native made by SsageParuders. " +
"Requires Riru $moduleMinRiruVersionName or above. "
moduleVersion = "v1.0.0"
moduleVersionCode = 1
}