• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Trying to access my pandigital tablet in Java

jwilke101

Newbie
I am trying to debug to my pandigital tablet in Java.. I have been able to get apps to run properly with the emulator.. now I'm going to try to run one on a real tablet..

Working with a Pandigital 7" tablet with 1gb mem..

I have attached an image of what I see when I run with a manual run configuration.

I am developing in Ubuntu Linux 11.4 with Java/Eclipse..

I'm not really sure what API this Pandigital device uses.. how do I find that out.. I'm trying 1.6 as my target api..

Any suggestions?

Regards,
Jeff
jwilke101@gmail.com
 
Just in case anybody else is having this problem, here is the solution.


  1. Create/edit a udev rules file:
    sudo vim /etc/udev/rules.d/51-android.rules
  2. Add the following line to this file:
    SUBSYSTEM=="usb", SYSFS{idVendor}=="18D1", MODE="0666"
3. sudo chmod a+r /etc/udev/rules.d/51-android.rules

I needed to reboot Ubuntu before it would work.. Regardless of how many times are restarted the udev services...

USB Device Id for Pandigital Novel 7" = 18D1
 
Back
Top Bottom