forked from eebssk1/riru_MPH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.gradle
28 lines (23 loc) · 978 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
ext {
/*
This name will be used in the name of the so file ("lib${moduleLibraryName}.so").
If this module need to support Riru pre-v24 (API < 24), moduleLibraryName must start with "riru_".
*/
moduleLibraryName = "riru_mph"
/* Minimal supported Riru API version, used in the version check of riru.sh */
moduleMinRiruApiVersion = 9
/* The version name of minimal supported Riru, used in the version check of riru.sh */
moduleMinRiruVersionName = "v22.0"
/* Maximum supported Riru API version, used in the version check of riru.sh */
moduleRiruApiVersion = 25
/*
Magisk module ID
Since Magisk use it to distinguish different modules, you should never change it.
*/
magiskModuleId = "riru_mph"
moduleName = "mph"
moduleAuthor = "eebssk1"
moduleDescription = "Hook system prop function with dobby to simulate miui for MiPushFOSS"
moduleVersion = "v25.7.1"
moduleVersionCode = 39
}