mirror of
https://github.com/meowstercatel/r1-apk-patcher.git
synced 2024-12-23 07:35:18 -06:00
added a setting to use a custom imei
This commit is contained in:
parent
9c16c20bc0
commit
3516d505ab
2 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
const {generateIMEI} = require("./utils");
|
const {generateIMEI} = require("./utils");
|
||||||
|
const settings = require("./settings.json");
|
||||||
|
|
||||||
const imei = generateIMEI();
|
const imei = settings.imei=="" ? generateIMEI() : settings.imei;
|
||||||
|
|
||||||
const getOSVersion = {
|
const getOSVersion = {
|
||||||
location: "smali/classes/tech/rabbit/r1launcher/RLApp.smali",
|
location: "smali/classes/tech/rabbit/r1launcher/RLApp.smali",
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
{
|
{
|
||||||
"apkFileName": "RabbitLauncher0517"
|
"apkFileName": "RabbitLauncher0517",
|
||||||
|
"imei": ""
|
||||||
}
|
}
|
Loading…
Reference in a new issue