mirror of https://github.com/kivy/kivy.git
examples: move touchtracer into his own directory, and change to be able to run on android
This commit is contained in:
parent
486a0be44d
commit
3f39fecb6d
|
@ -0,0 +1,12 @@
|
||||||
|
Touchtracer
|
||||||
|
===========
|
||||||
|
|
||||||
|
Touchtracer is a simple example to draw lines under every touches detected
|
||||||
|
on your hardware.
|
||||||
|
|
||||||
|
Android
|
||||||
|
-------
|
||||||
|
|
||||||
|
You can copy/paste this directory into /sdcard/kivy/touchtracer in your
|
||||||
|
android device.
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
title=Touchtracer
|
||||||
|
author=Kivy team
|
||||||
|
orientation=portrait
|
Binary file not shown.
After Width: | Height: | Size: 576 B |
|
@ -76,5 +76,5 @@ class TouchdebugApp(App):
|
||||||
def build(self):
|
def build(self):
|
||||||
return Touchdebug()
|
return Touchdebug()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ in ('__main__', '__android__'):
|
||||||
TouchdebugApp().run()
|
TouchdebugApp().run()
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Loading…
Reference in New Issue