Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
cweiske committed Oct 6, 2023
1 parent 97998d5 commit 0a6cf23
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/gradle/
/gradle.properties
/local.properties
/README.html
/*.apk

/app/build

32 changes: 32 additions & 0 deletions README.rst
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/

0 comments on commit 0a6cf23

Please sign in to comment.