On Jul 18, 10:41 am, Mathieu Virbel <
m...@kivy.org> wrote:
> HI Philip,
>
> Yes, you can use Pyro or Twisted. We are shipping socket python module into
> the build, but not theses libraries.
> If you want to use it, you need to embed it yourself. For example, you can
> create a "libs" directory, put twisted in it, and add in the top of your
> code:
>
> # Add <curdir>/libs to the python module search paths
> from os.path import dirname, join
> from sys import path
> path.append(join(dirname(__file__), 'libs'))
>
> If you intend to make a server (ie bind a socket), you need to activate the
> INTERNET permission too:
>
> # on the kivy-android package
> ./build.py <put standard options here> --permission INTERNET
>
> That's all !
>
> Mathieu
>