-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
d3622e3
commit b4c913b
Showing
1 changed file
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# License Activation | ||
|
||
Some of the Bass OS builds do require licensing activation. After contacting us with your device serial numbers and purchasing a license, there are a few different ways it can be activated. | ||
|
||
### Option A: On Device | ||
|
||
Start off by going into Android Settings | ||
![Screenshot_20241107-131404_Settings](https://github.com/user-attachments/assets/fca68559-9dfe-4b29-9f35-f47dcc30ccec) | ||
|
||
Then scroll down to the Device Status option (if it is not showing, close Settings and re-open) | ||
![Screenshot_20241107-131417_Settings](https://github.com/user-attachments/assets/85c94a0e-bfee-4f95-9c1e-b06a2b75a0db) | ||
|
||
After selecting the Device Status activity, you can see your product serial number here. This is the serial number you will need to report to us with in order for us to regiater your device. | ||
![Screenshot_20241107-131424_Bootsight](https://github.com/user-attachments/assets/ec426531-0da8-4f80-9b22-595062f679a2) | ||
|
||
Once reported and license is purchased, you can click on the "Check Device Status" button to check it's activation status. Once activated, the screen will reflect the status by showing as "Licensed" | ||
|
||
### Option B: Using ADB | ||
|
||
Connect to the device using ADB, and run the following command to collect its serial number: | ||
|
||
`adb shell getprop ro.bliss.serialnumber` | ||
|
||
Take the value returned and you can contact us at [[email protected]](mailto:[email protected]?subject=Ad/Signage%20Licensing) with all the serial numbers you want to register. Once payment is confirmed, we will activate the license for each serial shared and send you a response when complete. | ||
|
||
From there, you can use adb to reboot each device for it to confirm it's license status once it reconnects to the internet: | ||
|
||
``` | ||
adb root | ||
adb shell reboot -f | ||
``` |