Skip to content

Instantly share code, notes, and snippets.

@XenGi
Last active August 15, 2018 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save XenGi/7a541c8299c6ed3a8428bdae78129acf to your computer and use it in GitHub Desktop.
Save XenGi/7a541c8299c6ed3a8428bdae78129acf to your computer and use it in GitHub Desktop.

AQIPADS

Kioskbrowser

After you turn them on you'l see the kioskbrowser which could also be used without any changes. but that would take all the fun out of it right?

To exit the kiosk mode poke the touchscreen 4 times. A password field appears. Type in 1945 to get to the admn panel where you can set the kiosk site and other things.

Install widget launcher and f-droid

  1. Install adb

  2. Connect AQIPAD via USB to your computer

  3. Open a terminal and type:

    adb devices
    
  4. If the Tablet doesn't show up create the file /etc/udev/rules.d/51-aqipad.rules with the following content:

    SUBSYSTEM=="usb",ATTR{idVendor}=="2207",ATTR{idProduct}=="0010",MODE="0600",OWNER="root"
    
  5. Restart udevadm:

    udevadm control --reload
    
  6. Reconnect the tablet. It should show up now with:

    adb devices
    
  7. Uninstall the kioskbrowser with:

    adb uninstall com.procoit.kioskbrowser
    
  8. Download the APKs for f-droid and fast widget launcher:

    wget https://f-droid.org/repo/org.ligi.fast_67.apk
    wget https://f-droid.org/FDroid.apk
    
  9. Install both on the tablet by typing:

    adb install org.ligi.fast_67.apk
    adb install FDroid.apk
    
  10. You should have the widget launcher and f-droid on the tablet now.

  11. Have fun!

~ Tutorial by c_ascha @ 2018
~ Translated by XenGi @ 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment