mirror of https://github.com/kivy/kivy.git
doc: add faq entries for android. Closes #269
This commit is contained in:
parent
0f8792e491
commit
807f882991
|
@ -48,6 +48,32 @@ Cython. (Reference: http://mail.scipy.org/pipermail/nipy-devel/2011-March/005709
|
|||
Solution: use `easy_install`, as our documentation said.
|
||||
|
||||
|
||||
Android FAQ
|
||||
===========
|
||||
|
||||
could not extract public data
|
||||
-----------------------------
|
||||
|
||||
This message error can happen in many cases. Ensure that:
|
||||
|
||||
* you have a phone with sdcard
|
||||
* you are not currently in a "USB Mass Storage" mode
|
||||
* you have the permissions to write on sdcard
|
||||
|
||||
In case of USB Mass Storage mode error, and if you don't want to keep
|
||||
unplugging the device, set the usb option to Power.
|
||||
|
||||
Is it possible to have a kiosk app on android 3.0 ?
|
||||
---------------------------------------------------
|
||||
|
||||
Thomas Hansen have wrote a detailed answer on kivy-users mailing list:
|
||||
|
||||
https://groups.google.com/d/msg/kivy-users/QKoCekAR1c0/yV-85Y_iAwoJ
|
||||
|
||||
Basicaly, you need to root de device, remove the SystemUI package, add some
|
||||
line on the xml configuration, and you're done.
|
||||
|
||||
|
||||
Project FAQ
|
||||
===========
|
||||
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
Kivy on Android
|
||||
===============
|
||||
|
||||
Kivy is able to run on android, but you need a phone with:
|
||||
|
||||
* SD Card
|
||||
* OpenGL ES 2.0 (Android 2.2 minimum)
|
||||
|
||||
Requirements for android application
|
||||
------------------------------------
|
||||
|
||||
|
@ -46,12 +51,12 @@ We made that branch to be able to:
|
|||
- integrate Kivy android-support branch in the build
|
||||
- create opengl es 2 surface with stencil buffer
|
||||
- enable multitouch event
|
||||
- custom start.pyx to launch kivy application
|
||||
- custom python native launcher that run the main.py
|
||||
- default activation of WRITE_EXTERNAL_STORAGE permission
|
||||
- *Video providers* (done in 1.0.8 version using ffmpeg-android)
|
||||
|
||||
Currently, Kivy is not fully supported on Android. We are missing:
|
||||
|
||||
- *Video providers* (done in 1.0.8 version)
|
||||
- Camera providers
|
||||
- Audio (can use RenPySound) providers
|
||||
- Keyboard mapping for main button
|
||||
|
|
Loading…
Reference in New Issue