Anthony Sorace wrote:
as i understand it, "proper" android stuff is meant to be in their
java flavor. you can load C programs,
http://google-opensource.blogspot.com/2009/06/introducing-android-scripting.html
http://www.mattcutts.com/blog/android-barcode-scanner/
Just as a proof-of-concept, here’s a barcode scanner written in six
lines of Python code:
import android
droid = android.Android()
code = droid.scanBarcode()
isbn = int(code['result']['SCAN_RESULT'])
url = “http://books.google.com?q=%d” % isbn
droid.startActivity(’android.intent.action.VIEW’, url)