We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Yes
When calling Java method that takes long[] as a parameter with javascript array, it is marshalled to Java array but large values are truncated to int.
Workaround for the problem; explicty create array with Array.create("long", arr.length) and use that array to call java method.
tns-android 2.4.1
No
Sample java method:
public String test(long[] arr) { return Arrays.toString(arr); }
Javascript call:
console.log(className.test([ 1485609581321, 1485609581321 ]))
The text was updated successfully, but these errors were encountered:
@dunqan I managed to reproduce the problem, and I will investigate. Thanks for the report.
Sorry, something went wrong.
fix for issue #696
21e3e49
long was converted to int
Merge pull request #697 from NativeScript/plamen5kov/long_conversion
c718ef9
4e50cd7
Plamen5kov
No branches or pull requests
Did you verify this is a real problem by searching [Stack Overflow]
Yes
Tell us about the problem
When calling Java method that takes long[] as a parameter with javascript array, it is marshalled to Java array but large values are truncated to int.
Workaround for the problem; explicty create array with Array.create("long", arr.length) and use that array to call java method.
Please provide the following version numbers that your issue occurs with:
tns-android 2.4.1
Did the error happen while the app was being constructed? (buildtime error)
No
Did the error happen while the app was executing? (runtime error)
Yes
Please tell us how to recreate the issue in as much detail as possible.
Sample java method:
Javascript call:
The text was updated successfully, but these errors were encountered: