Compiled python for android by doing
/python-for-android$ git clean -dxf
/python-for-android$ ./distribute.sh -m "sqlite3 kivy"
Then installed the app using
/python-for-android/dist/default$ ./build.py --dir ~/Desktop/demo/Nutrition --package org.demo.Nutrition --name "Nutrition" --version 1.1.0 debug installd
When running the app, I watched logcat using
adb logcat python:I *:S
And keep seeing the message
I/python ( 5662): ImportError: No module named sqlite3
I/python ( 5662): Python for android ended
Which I believe indicates the sqlite3 package is not getting compiled?