forked from MaterialCleaner/MaterialCleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.gradle
More file actions
19 lines (17 loc) · 730 Bytes
/
module.gradle
File metadata and controls
19 lines (17 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ext {
/*
This name will be used in the name of the so file ("lib${moduleLibraryName}.so").
*/
moduleLibraryName = "cleanerhooks"
/*
Magisk module ID
Since Magisk use it to distinguish different modules, you should never change it.
*/
zygiskModuleId = "zygisk_" + moduleLibraryName
moduleName = "Cleaner Hooks"
moduleAuthor = "Green Mushroom"
moduleDescription = "Provide hooks for Cleaner. Requires Magisk 24.0+ and Zygisk enabled."
moduleVersion = "v1.8.4"
moduleVersionCode = Integer.parseInt('git rev-list --count HEAD'.execute([], project.rootDir).text.trim())
moduleUpdateJson = "https://materialcleaner.github.io/MaterialCleaner/releases/module.json"
}