forked from RikkaApps/Riru-LocationReportEnabler
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
29 additions
and
8 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
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
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,11 @@ | ||
#!/system/bin/sh | ||
# Please don't hardcode /magisk/modname/... ; instead, please use $MODDIR/... | ||
# This will make your scripts compatible even if Magisk change its mount point in the future | ||
MODDIR=${0%/*} | ||
|
||
# This script will be executed in late_start service mode | ||
# More info in the main Magisk thread | ||
resetprop -n ro.miui.ui.version.name V9 | ||
resetprop -n ro.miui.ui.version.code 7 | ||
resetprop -n ro.miui.version.code_time 1505408400 | ||
resetprop -n ro.miui.internal.storage /sdcard/ |
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,7 @@ | ||
# This file will be read by resetprop | ||
# Example: Change dpi | ||
# ro.sf.lcd_density=320 | ||
ro.miui.ui.version.name=V9 | ||
ro.miui.ui.version.code=7 | ||
ro.miui.version.code_time=1505408400 | ||
ro.miui.internal.storage=/sdcard/ |
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,7 +1,7 @@ | ||
id=mipush_fake | ||
name=Riru - MiPushFakeModule | ||
version=v6 | ||
versionCode=6 | ||
version=v7 | ||
versionCode=7 | ||
author=Timothy | ||
description=Fake as XiaoMI device by hook system_property_get. Require Riru - Core installed. | ||
minMagisk=1500 | ||
minMagisk=17000 |
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,5 +1,5 @@ | ||
name=Riru - MiPushFakeModule | ||
version=v6 | ||
versionCode=6 | ||
version=v7 | ||
versionCode=7 | ||
author=Timothy | ||
description=Fake as XiaoMI device by hook system_property_get. Require Riru - Core installed. | ||
description=Fake as XiaoMI device by hook system_property_get. Require Riru-Core v9+ installed. |