This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[app] | |
# (str) Title of your application | |
title = My Application | |
# (str) Package name | |
package.name = myapp | |
# (str) Package domain (needed for android/ios packaging) | |
package.domain = org.test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
goblin@goblin-AO722:~/Desktop/Test Folder$ buildozer --verbose android debug | |
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Preparing build | |
# Check requirements for android | |
# Search for Git git | |
# -> found at /usr/bin/git | |
# Search for Cython cython | |
# -> found at /usr/bin/cython |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[app] | |
# (str) Title of your application | |
title = My Application | |
# (str) Package name | |
package.name = myapp | |
# (str) Package domain (needed for android/ios packaging) | |
package.domain = org.test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
goblin@goblin-AO722:~/Desktop/Bluetooth project/android-demo/test2$ buildozer --verbose android debug | |
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Preparing build | |
# Check requirements for android | |
# Search for Git git | |
# -> found at /usr/bin/git | |
# Search for Cython cython | |
# -> found at /usr/bin/cython |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#:kivy 1.5.1 | |
<MainView>: | |
newdot: graphdot | |
size: root.size | |
GraphDot: | |
center: 0, self.center_y | |
id: graphdot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kivy | |
kivy.require('1.5.1') | |
from kivy.app import App | |
from kivy.clock import Clock | |
from kivy.uix.floatlayout import FloatLayout | |
from kivy.uix.widget import Widget | |
from kivy.properties import ObjectProperty, ReferenceListProperty, NumericProperty, ListProperty | |
from kivy.vector import Vector | |
from kivy.graphics import Color, Ellipse, Line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#:kivy 1.5.1 | |
<MainView>: | |
newdot: graphdot | |
GraphDot: | |
id: graphdot | |
<GraphDot>: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#:kivy 1.5.1 | |
<MainView>: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from kivy.app import App | |
from kivy.uix.screenmanager import ScreenManager, Screen | |
class ScreenOne(Screen): | |
pass | |
class ScreenTwo(Screen): | |
pass | |
class ScreenManagerErrorApp(App): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from kivy.app import App | |
from kivy.properties import StringProperty | |
from kivy.uix.screenmanager import ScreenManager, Screen | |
class ScreenOne(Screen): | |
pass | |
class ScreenTwo(Screen): | |
pass |
NewerOlder