There are two ways to install the APK file (the Eden Tablet app) to the tablet device. You can manually load the APK to the device either through ADB or a USB storage drive.
Load APK from a USB Storage Drive
Download the APK file provided by Eden.
Copy the file onto a USB drive and insert it into the IAdea device.
From the Basic Settings, click "Advanced" to enter the screen below, then click on the lower right corner 3 times.
Click the folder icon on the lower task bar.
Find your USB drive device name and open it.
Click the .apk file you are going to install and click ‘Install’
You may need to “enable” the unknown source if your APK is not yet signed with the IAdea platform key.
Open the homescreen from the taskbar & click on the Eden app.
Load APK from ADB
From the Basic Settings page, click on the Ethernet setting. It will bring you to the general Android setting page.
Click on the menu icon.
Scroll down to “About device” & click the “Build number” field 7 times. This will turn on “Developer options”
Go back to Settings.
Go to “Developer options”
Scroll down and enable “USB debugging”
For standard installation using following command:
adb install -r {app name}.apk
If your application requires privileged access, run the following commands:
adb root
adb remount
adb shell mkdir /system/priv-app/{app installed folder}
adb push {app name}.apk /system/priv-app/{app installed folder}/.
adb rebootOpen the homescreen from the taskbar & click on the Eden app.