Skip to content

Commit 11c4b68

Browse files
committed
Fixed unicode strings in android module recipe, broken in rebase
1 parent 5f7cbc1 commit 11c4b68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/recipes/android/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def prebuild_arch(self, arch):
4343
if is_sdl2 or is_webview:
4444
if is_sdl2:
4545
bootstrap = 'sdl2'
46-
java_ns = 'org.kivy.android'
47-
jni_ns = 'org/kivy/android'
46+
java_ns = u'org.kivy.android'
47+
jni_ns = u'org/kivy/android'
4848
else:
4949
logger.error((
5050
'unsupported bootstrap for android recipe: {}'

0 commit comments

Comments
 (0)