We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f592348 + 60cf882 commit 21ad9baCopy full SHA for 21ad9ba
pythonforandroid/recipes/kivy/__init__.py
@@ -1,12 +1,13 @@
1
+import glob
2
+from os.path import basename, exists, join
3
+
4
+import sh
5
from pythonforandroid.recipe import CythonRecipe
6
from pythonforandroid.toolchain import current_directory, shprint
-from os.path import exists, join, basename
-import sh
-import glob
7
8
9
class KivyRecipe(CythonRecipe):
- version = '1.11.1'
10
+ version = '2.0.0'
11
url = 'https://github.com/kivy/kivy/archive/{version}.zip'
12
name = 'kivy'
13
@@ -47,7 +48,7 @@ def get_recipe_env(self, arch):
47
48
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_image'),
49
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_mixer'),
50
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_ttf'),
- ])
51
+ ])
52
53
return env
54
0 commit comments