I Cannot Call An Android Function From Javascript
I just started make a kind of Android hybrid app, an application with WebView. As a first step, I tried to call a function of Android code from JavaScript. But, the app keeps crash
Solution 1:
I think you can only use primitive types and String, so ensureTracking(Integer rideId) should be ensureTracking(int rideId).
Post a Comment for "I Cannot Call An Android Function From Javascript"