dorianrod commented on issue #828: Android Pie 9.0 - Communication between JS - JAVA is broken (truncated) URL: https://github.com/apache/cordova-android/issues/828#issuecomment-531567330 After investigation, the bug was caused by this line in nativeapiprovider: var nativeApi = this._cordovaNative || require('cordova/android/promptbasednativeapi'); this._cordovaNative returned nothing, but in backend side, window._cordovaNative was correctly provided. Solution: I replaced this._cordovaNative by window._cordovaNative. Cause: I group all cordova files in one file. That could has been caused by this operation.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
