forked from luoyesiqiu/Riru-gaiji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.gradle
30 lines (24 loc) · 1020 Bytes
/
module.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
ext {
/*
This name will be used in the name of the so file ("lib${moduleLibraryName}.so").
*/
moduleLibraryName = "gaiji"
/* 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 = "riru-gaiji"
moduleName = "gaiji"
moduleAuthor = "luoyesiqiu"
moduleDescription = "Riru module. Requires Riru $moduleMinRiruVersionName or above."
moduleVersion = "v1.0.0"
moduleVersionCode = 26
}