Skip to content

Commit 380506e

Browse files
darosiortshirtman
authored andcommitted
Removed use of byte string for pygame and unicode in _android.pyx (#1748)
1 parent a247632 commit 380506e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pythonforandroid/recipes/android/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ def prebuild_arch(self, arch):
4545
if is_sdl2 or is_webview:
4646
if is_sdl2:
4747
bootstrap = 'sdl2'
48-
java_ns = 'org.kivy.android'
49-
jni_ns = 'org/kivy/android'
48+
java_ns = u'org.kivy.android'
49+
jni_ns = u'org/kivy/android'
5050
elif is_pygame:
51-
java_ns = b'org.renpy.android'
52-
jni_ns = b'org/renpy/android'
51+
java_ns = u'org.renpy.android'
52+
jni_ns = u'org/renpy/android'
5353
else:
5454
logger.error((
5555
'unsupported bootstrap for android recipe: {}'

0 commit comments

Comments
 (0)