Skip to content

Commit 21ad9ba

Browse files
authored
Merge pull request kivy#2384 from kuzeyron/kivy2_recipe
⬆️ Updates to Kivy2
2 parents f592348 + 60cf882 commit 21ad9ba

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pythonforandroid/recipes/kivy/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
import glob
2+
from os.path import basename, exists, join
3+
4+
import sh
15
from pythonforandroid.recipe import CythonRecipe
26
from pythonforandroid.toolchain import current_directory, shprint
3-
from os.path import exists, join, basename
4-
import sh
5-
import glob
67

78

89
class KivyRecipe(CythonRecipe):
9-
version = '1.11.1'
10+
version = '2.0.0'
1011
url = 'https://github.com/kivy/kivy/archive/{version}.zip'
1112
name = 'kivy'
1213

@@ -47,7 +48,7 @@ def get_recipe_env(self, arch):
4748
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_image'),
4849
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_mixer'),
4950
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_ttf'),
50-
])
51+
])
5152

5253
return env
5354

0 commit comments

Comments
 (0)