You will need to have ADB on your PC (You can get it as part of the Android SDK Platform Tools) or GUI like ADB AppControl
-
Connect to Artisan by its IP address port 5555: (terminal or GUI console)
adb connect 192.168.x.x:5555 -
Allow USB debugging on LCD
-
Confirm that your computer is connected to Artisan:
adb devices
you should see Artisan IP address in:List of devices attached 192.168.x.x:5555 device -
adb shell cmd statusbar expand-notifications
adb running on your Artisan with root rights. adb root allows you to “adb push/pull” to system directories. typically only works on debug/engineering (eng) or userdebug Android builds.
How to change android language to English
adb shell content delete --uri content://settings/system --where "name=\'system_locales\'"adb shell content insert --uri content://settings/system --bind name:s:system_locales --bind value:s:en-USadb reboot
How to mirror Artisan screen on PC (scrcpy)
scrcpy (v3.3.4)
pronounced “screen copy”
This application mirrors Android devices (video and audio) connected via USB or TCP/IP and allows control using the computer’s keyboard and mouse. It does not require root access or an app installed on the device. It works on Linux, Windows, and macOS.
double-click on open_a_terminal_here.bat in your scrcpy directory, then type your command.
adb connect 192.168.x.x:5555scrcpy
How to install apps on your Artisan LCD
Option 1: (adb)
adb -e install path/to/app.apk
Option 2: (scrcpy)
To install an APK, drag & drop an APK file (ending with .apk) to the scrcpy window.
There is no visual feedback, a log is printed to the console.
Option 3: (ADB AppControl)

