No DRP key due to exception:java.lang.ClassNotFoundException: com.android.webview.chromium.Drp

后端 未结 1 740
没有蜡笔的小新
没有蜡笔的小新 2021-01-21 00:14

We are having a problem running our Android app built with IONIC framework run on Genymotion emulator, although it runs fine on a real hardware, a real android phone.

I

相关标签:
1条回答
  • 2021-01-21 00:21

    I had this issue and it turned out to be the JavaScript that contained some ES6 fat arrows

    ()=> {...}

    After removing them and returning to anonymous functions

    function () {...}

    this error was no longer thrown on the Genymotion emulator. It was still there on the Android Studio emulator but didn't affect the JavaScript execution.

    0 讨论(0)
提交回复
热议问题