Skip to content
New issue

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

Javascript array not marshalling to Java long[] properly #696

Closed
dunqan opened this issue Jan 28, 2017 · 1 comment
Closed

Javascript array not marshalling to Java long[] properly #696

dunqan opened this issue Jan 28, 2017 · 1 comment
Assignees
Labels
Milestone

Comments

@dunqan
Copy link

dunqan commented Jan 28, 2017

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:

public String test(long[] arr)
{
      return Arrays.toString(arr);
}

Javascript call:

console.log(className.test([ 1485609581321, 1485609581321 ]))
@Plamen5kov Plamen5kov added the bug label Jan 30, 2017
@Plamen5kov Plamen5kov self-assigned this Jan 30, 2017
@Plamen5kov
Copy link
Contributor

@dunqan I managed to reproduce the problem, and I will investigate. Thanks for the report.

Plamen5kov added a commit that referenced this issue Jan 30, 2017
long was converted to int
@Plamen5kov Plamen5kov added this to the 3.0.0 milestone Feb 7, 2017
petekanev pushed a commit that referenced this issue Mar 20, 2017
long was converted to int
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants