forked from RikkaApps/Riru-ModuleTemplate
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmodule.example.gradle
More file actions
23 lines (21 loc) · 860 Bytes
/
module.example.gradle
File metadata and controls
23 lines (21 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ext {
moduleId = "template" // FIXME replace with yours
riruApiVersion = 6
riruMinVersionName = "v21.0"
moduleProp = [
name : "Template", // FIXME replace with yours
version : "v1.0", // FIXME replace with yours
versionCode: "1", // FIXME replace with yours
author : "Template", // FIXME replace with yours
description: "Riru module template.", // FIXME replace with yours
api : riruApiVersion
]
magiskModuleProp = [
id : "riru-${moduleId.replace('_', '-')}",
name : "Riru - ${moduleProp['name']}",
version : moduleProp['version'],
versionCode: moduleProp['versionCode'],
author : moduleProp['author'],
description: moduleProp['description']
]
}