I'm getting an error when testing a python script which is installed on my Android Emulator running SDK 2.2
I have installed "Python_for_android_r1.apk" and "sl4a_r5.apk" in my emulator. It seems that my code is trying to import the following:
from urllib import urlencode
from urllib2 import urlopen
And from what I can tell urllib2 is not found based on the error below.
( FILE "/home/manuel/A;tanaStudio3Workspace/python-for-android/python-build/output/usr/lib/python2.6/urllib2.py, line 124 in urlopen )
Any ideas how I can fix this problem??