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.
1 parent 5e11c01 commit 284e889Copy full SHA for 284e889
recipes/android/src/java.pyx
@@ -99,7 +99,7 @@ cdef class JavaClass(object):
99
elif argtype == 'D':
100
j_args[index].d = py_arg
101
elif argtype[0] == 'L':
102
- if argtype == 'Ljava/lang/String;':
+ if argtype == 'Ljava/lang/String':
103
if isinstance(py_arg, basestring):
104
j_args[index].l = self.j_env[0].NewStringUTF(self.j_env, <char *><bytes>py_arg)
105
else:
0 commit comments