You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
10-22 00:34:43.056 1595 1894 I python : File "jnius/jnius_export_class.pxi", line 1164, in jnius.jnius.JavaMultipleMethod.call
10-22 00:34:43.056 1595 1894 I python : File "jnius/jnius_export_class.pxi", line 872, in jnius.jnius.JavaMethod.call
10-22 00:34:43.057 1595 1894 I python : File "jnius/jnius_conversion.pxi", line 51, in jnius.jnius.populate_args
10-22 00:34:43.057 1595 1894 I python : OverflowError: value too large to convert to jshort
for this line: intent.putExtra(name, 1_234_567_890)
Most probably because of:
File "jnius/jnius_utils.pxi", line 321
Both short and integer having same scoring logic, if short is come later in sign_args it got selected even though value not fit inside the short value range
The text was updated successfully, but these errors were encountered:
@cmacdonald Hi, I have not done anything like that, so I'm not aware of the right way. If you guide a bit, I will gladly do that.
BTW, thanks for the comment.
Hi,
I am geting this error:
for this line:
intent.putExtra(name, 1_234_567_890)
Most probably because of:
File "jnius/jnius_utils.pxi", line 321
pyjnius/jnius/jnius_utils.pxi
Line 321 in c144e96
Both short and integer having same scoring logic, if short is come later in sign_args it got selected even though value not fit inside the short value range
The text was updated successfully, but these errors were encountered: