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
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Run 'dpkg --version' | |
# Cwd None | |
Debian `dpkg' package management program version 1.17.25 (amd64). | |
This is free software; see the GNU General Public License version 2 or | |
later for copying conditions. There is NO warranty. | |
# Search for Git (git) | |
# -> found at /usr/bin/git |
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
yash@Yash-PC:~/againcheck$ buildozer android_new debug | |
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Preparing build | |
# Check requirements for android | |
# Run 'dpkg --version' | |
# Cwd None | |
Debian `dpkg' package management program version 1.17.25 (amd64). | |
This is free software; see the GNU General Public License version 2 or |
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
yash@Yash-PC:~/againcheck$ buildozer android_new debug | |
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Preparing build | |
# Check requirements for android | |
# Run 'dpkg --version' | |
# Cwd None | |
Debian `dpkg' package management program version 1.17.25 (amd64). | |
This is free software; see the GNU General Public License version 2 or |
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
buildozer android_new debug | |
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Preparing build | |
# Check requirements for android | |
# Run 'dpkg --version' | |
# Cwd None | |
Debian `dpkg' package management program version 1.17.25 (amd64). | |
This is free software; see the GNU General Public License version 2 or |
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.button import Button | |
from kivy.uix.textinput import TextInput | |
from kivy.uix.label import Label | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.uix.gridlayout import GridLayout | |
from kivy.lang import Builder | |
from kivy.uix.popup import Popup | |
from kivy.uix.image import AsyncImage |
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
Building libxml2 for armeabi-v7a | |
Traceback (most recent call last): | |
File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main | |
"__main__", fname, loader, pkg_name) | |
File "/usr/lib/python2.7/runpy.py", line 72, in _run_code | |
exec code in run_globals | |
File "/home/yash/test/.buildozer/android/platform/python-for-android-master/pythonforandroid/toolchain.py", line 871, in <module> | |
main() | |
File "/home/yash/test/.buildozer/android/platform/python-for-android-master/pythonforandroid/toolchain.py", line 868, in main | |
ToolchainCL() |
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
yash@Yash-PC:~/libxml2_test$ buildozer android_new debug | |
# Check configuration tokens | |
# Ensure build layout | |
# Check configuration tokens | |
# Preparing build | |
# Check requirements for android | |
# Run 'dpkg --version' | |
# Cwd None | |
Debian `dpkg' package management program version 1.17.25 (amd64). | |
This is free software; see the GNU General Public License version 2 or |
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 pythonforandroid.toolchain import (CythonRecipe, shprint, | |
current_directory, info, Recipe) | |
from pythonforandroid.patching import will_build, check_any | |
import sh | |
from os.path import join | |
class Libxml2Recipe(Recipe): | |
version = '2.9.3' | |
url = 'ftp://xmlsoft.org/libxml2/libxml2-{version}.tar.gz' |
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.button import Button | |
from kivy.uix.label import Label | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.lang import Builder | |
from kivy.uix.popup import Popup | |
import libxml2 | |
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.uix.boxlayout import BoxLayout | |
from kivy.app import App | |
from kivy.uix.button import Button | |
from functools import partial | |
class DemoBox(BoxLayout): | |
def __init__(self, **kwargs): | |
super(DemoBox, self).__init__(**kwargs) | |
self.orientation = "vertical" |