-
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
2 changed files
with
34 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
/gradle/ | ||
/gradle.properties | ||
/local.properties | ||
/README.html | ||
/*.apk | ||
|
||
/app/build | ||
|
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,32 @@ | ||
Razer Forge TV setup customization | ||
================================== | ||
System app that lets you skip Google sign-in during the initial | ||
Razer Forge TV setup. | ||
|
||
|
||
Installation | ||
------------ | ||
1. Use ``fastboot`` to boot a fastboot-enabled twrp so we have unrestricted | ||
``adb`` root access. | ||
2. Mount the ``/system`` partition:: | ||
|
||
$ adb shell | ||
$ mount -t ext4 /dev/block/platform/msm_sdcc.1/by-name/system /system | ||
|
||
3. Create the app directory:: | ||
|
||
$ mkdir /system/priv-app/ForgeSetupCustomizer | ||
4. Install the setup customization:: | ||
|
||
$ adb push ForgeSetupCustomizer.apk /system/priv-app/ForgeSetupCustomizer/ | ||
$ adb reboot | ||
|
||
Now the welcome message is "Welcome savior!" instead of "Welcome", | ||
and Google Sign-In can be skipped. | ||
|
||
|
||
|
||
Notes | ||
----- | ||
Based upon | ||
https://android.googlesource.com/device/sample/+/android-6.0.1_r81/apps/SetupCustomizer/ |