forked from Perfare/Zygisk-Il2CppDumper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
345 additions
and
463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
*.prop text eol=lf | ||
*.sh text eol=lf | ||
* text=auto eol=lf | ||
|
||
*.bat text eol=crlf | ||
*.jar binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Rikka | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Fri Oct 09 23:12:33 CST 2020 | ||
#Mon Jul 12 21:05:17 CST 2021 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip | ||
distributionPath=wrapper/dists | ||
zipStorePath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
ext { | ||
// FIXME replace with yours | ||
moduleId = "il2cppdumper" | ||
moduleName = "Il2CppDumper" | ||
moduleAuthor = "Perfare" | ||
moduleDescription = "Il2CppDumper Riru version." | ||
moduleVersion = "v1.1" | ||
moduleVersionCode = 1 | ||
/* | ||
This name will be used in the name of the so file ("lib${moduleLibraryName}.so"). | ||
*/ | ||
moduleLibraryName = "il2cppdumper" | ||
|
||
/* 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" | ||
|
||
moduleMinRiruApiVersion = 9 | ||
moduleMinRiruVersionName = "v22.0" | ||
moduleRiruApiVersion = 10 | ||
/* Maximum supported Riru API version, used in the version check of riru.sh */ | ||
moduleRiruApiVersion = 26 | ||
|
||
moduleProp = [ | ||
name : moduleName, | ||
version : moduleVersion, | ||
versionCode: moduleVersionCode.toString(), | ||
author : moduleAuthor, | ||
description: moduleDescription, | ||
minApi : moduleMinRiruApiVersion | ||
] | ||
/* | ||
Magisk module ID | ||
Since Magisk use it to distinguish different modules, you should never change it. | ||
magiskModuleProp = [ | ||
id : "riru-${moduleId.replace('_', '-')}", | ||
name : "Riru - ${moduleProp['name']}", | ||
version : moduleProp['version'], | ||
versionCode: moduleProp['versionCode'], | ||
author : moduleProp['author'], | ||
description: moduleProp['description'] | ||
] | ||
} | ||
Note, the older version of the template uses '-' instead of '_', if your are upgrading from | ||
the older version, please pay attention. | ||
*/ | ||
magiskModuleId = "riru_il2cppdumper" | ||
|
||
moduleName = "Il2CppDumper" | ||
moduleAuthor = "Perfare" | ||
moduleDescription = "Il2CppDumper Riru version." | ||
moduleVersion = "v26.0.0" | ||
moduleVersionCode = 26 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.