This file contains 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.8.1') | |
from kivy.app import App | |
from kivy.lang import Builder | |
from kivy.properties import ObjectProperty | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.uix.floatlayout import FloatLayout | |
This file contains 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
diff --git a/setup.py b/setup.py | |
index d1f9801..86e4337 100644 | |
--- a/setup.py | |
+++ b/setup.py | |
@@ -581,7 +581,12 @@ def determine_gl_flags(): | |
flags['libraries'] = ['GLESv2'] | |
c_options['use_x11'] = True | |
c_options['use_egl'] = True | |
- else: | |
+ if c_options['use_egl'] and 'EGL' not in flags['libraries']: |
This file contains 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
#!/usr/bin/env python | |
from kivy.config import Config | |
from kivy.uix.image import AsyncImage | |
Config.set('kivy', 'log_level', 'debug') | |
from kivy.app import App | |
from kivy.lang import Builder | |
from kivy.uix.boxlayout import BoxLayout |
This file contains 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.8.1') | |
from kivy.app import App | |
from kivy.lang import Builder | |
from kivy.factory import Factory | |
root = Builder.load_string(''' | |
<MyModalView@ModalView>: | |
size_hint: 0.5, 0.5 |
This file contains 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
[ | |
{"type": "password", | |
"title": "PASSWORD", | |
"section": "test", | |
"key": "pw"} | |
] |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="ee-github" fetch="ssh://[email protected]" /> | |
<remote name="ee-gitlab" fetch="ssh://[email protected]" /> | |
<!-- extra apps --> | |
<project path="packages/apps/DTLauncher" | |
name="aerispos/DTLauncher-prebuilt" |
This file contains 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
diff --git a/pythonforandroid/archs.py b/pythonforandroid/archs.py | |
index 3692c87..1b737ad 100644 | |
--- a/pythonforandroid/archs.py | |
+++ b/pythonforandroid/archs.py | |
@@ -52,6 +52,11 @@ class Arch(object): | |
env['TOOLCHAIN_PREFIX'] = toolchain_prefix | |
env['TOOLCHAIN_VERSION'] = toolchain_version | |
+ ccache = '' | |
+ if self.ctx.ccache: |
This file contains 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
The following license shall apply to all Public Gists owned by account. It | |
shall never apply to any Secret Gists, for which no license of any sort is | |
granted. | |
Copyright (c) 2015- Ryan Pessa | |
Permission is hereby granted, free of charge, to any person obtaining a copy |
This file contains 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
MyWidget: | |
Spinner: | |
values: root.options |