Introduction:
If the SymphoTouch app needs to be installed without internet access, there is also the option of using ADB over USB-C with a Windows machine.
Download the latest SymphoTouch .apk or ask Traxon | ecue support for the latest SymphoTouch.apk file.
Install SymphoTouch.apk over WiFi with "Wireless debugging"
Extract Android Platform Tools on PC/Mac
Press the “Set” button on the top of the e:touch with a needle and enter the password to open the settings
Activate Hotspot on Android/iPhone smartphone and connect e:touch and PC with this WiFi
(Or use any other WiFi, both devices need to be connected to the SAME WiFi network)Open "About tablet" in the android settings on the e:touch and tap the build number 7 times to unlock the developer options
Go to System → Developer options → Wireless debugging and activate it
Tap on "Pair device with pairing code"
Open a command prompt in the platform tools folder and type
./adb pair <ip>:<port>The ip & port is displayed on the e:touch. Hit enter.Now type the Wi-Fi pairing code, if it's working, the command line displays (example):
Successfully paired to 10.205.21.9:33429 [guid=adb-ADPCP525115427-TikTFt]- Skip steps 1 - 5 from the next chapter
Install SymphoTouch.apk without Google Play Store
Connect the android device to the Windows machine with a USB-C cable
Press the “Set” button on the top of the e:touch with a needle and enter the password to open the settings
Open the Device info setting and tap the build number 7 times to unlock the developer options and check if "USB debugging" is active
Install Android Debug Bridge (ADB or Minimal Fastboot and ADB)
Open a command prompt in the ADB installation folder
Enter the following command to test whether the tablet is recognized as an ADB device via USB-C:
adb devices
You should see an ID and "device"Run the following command in the command prompt:
adb install "SymphoTouch.apk"The prompt should show “Success” and the SymphoTouch app on the Android tablet should be closed.
Reopen SymphoTouch on the Android tablet and check the version number under “About SYMPHOTOUCH”
Done!
Install SymphoTouch.xapk without Google Play Store
If an SymphoTouch.xapk is available, it is relatively easy to install via ADB:
Connect the android device to the Windows machine with a USB-C cable
Press the “Set” button on the top of the e:touch with a needle and enter the password to open the settings
Open the Device info setting and tap the build number 7 times to unlock the developer options and check if "USB debugging" is active
Install Android Debug Bridge (ADB or Minimal Fastboot and ADB)
Open a command prompt in the ADB installation folder
Enter the following command to test whether the tablet is recognized as an ADB device via USB-C:
adb devices
You should see an ID and "device"Rename your
.xapkfile to.zipand unzip the file to the ADB installation folder.You will see a few
.apkfiles, and sometimes also a folderAndroidwhich includes a.obbfile (you can ignore the following files:icon.pngandmanifast.json).Run the following command in the command prompt:
adb install-multiple "com.osram.SymphoTouch.apk" "config.arm64_v8a.apk" "config.en.apk" "config.fr.apk" "config.mdpi.apk"If your XAPK file contains a
.obbfile (you should see a folder namedAndroid), then run also the following:adb push Android\obb\com.osram.SymphoTouch /storage/emulated/0/Android/obb/The prompt should show “Success” and the SymphoTouch app on the Android tablet should be closed.
Reopen SymphoTouch on the Android tablet and check the version number under “About SYMPHOTOUCH”
Done!