File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
pythonforandroid/recipes/kivy Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change
1
+ import glob
2
+ from os .path import basename , exists , join
3
+
4
+ import sh
1
5
from pythonforandroid .recipe import CythonRecipe
2
6
from pythonforandroid .toolchain import current_directory , shprint
3
- from os .path import exists , join , basename
4
- import sh
5
- import glob
6
7
7
8
8
9
class KivyRecipe (CythonRecipe ):
9
- version = '1.11.1 '
10
+ version = '2.0.0 '
10
11
url = 'https://github.com/kivy/kivy/archive/{version}.zip'
11
12
name = 'kivy'
12
13
@@ -47,7 +48,7 @@ def get_recipe_env(self, arch):
47
48
join (self .ctx .bootstrap .build_dir , 'jni' , 'SDL2_image' ),
48
49
join (self .ctx .bootstrap .build_dir , 'jni' , 'SDL2_mixer' ),
49
50
join (self .ctx .bootstrap .build_dir , 'jni' , 'SDL2_ttf' ),
50
- ])
51
+ ])
51
52
52
53
return env
53
54
You can’t perform that action at this time.
0 commit comments