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
So I am on my own branch and I encountered this, I am confident I didn't change anything to create this error. Though I would like to have confirmation that an error exists.
For me setCurrentTime on Android always returned the "Must provide a time" error.
I am new to Android programming and Capacitor so idk if what you had was correct, but I changed:
Long time = call.getLong("time");
to
Long time = Long.parseLong(String.format("%.0f", call.getDouble("time")) );
Again, not sure if this is an issue experienced by real people, I am too lazy to check right now, lol.
Thank you!
The text was updated successfully, but these errors were encountered:
Hi @KyleSmith0905 , thanks for working on this error! I already had identified it to Capacitor not reading the value if I used "getLong", so I had to change that to getDouble.
So I am on my own branch and I encountered this, I am confident I didn't change anything to create this error. Though I would like to have confirmation that an error exists.
For me
setCurrentTime
on Android always returned the "Must provide a time" error.I am new to Android programming and Capacitor so idk if what you had was correct, but I changed:
to
Again, not sure if this is an issue experienced by real people, I am too lazy to check right now, lol.
Thank you!
The text was updated successfully, but these errors were encountered: