在Android上首次使用ClassNotFoundException打开Flutter应用程序时崩溃

时间:2018-12-10 21:49:12

标签: android crash flutter classnotfoundexception

从Play商店安装后首次打开时,我的flutter应用程序崩溃了。之后,它工作正常。以下是崩溃报告

comboBox.addKeyListener(new KeyAdapter()
{
    public void keyPressed(KeyEvent e)
    {
        if (e.getKeyCode() == KeyEvent.VK_ENTER)
        {
            System.out.println("It was pressed Enter");
        }
    }
});
panel.add(comboBox);

这与FCM消息传递有关吗?错误是说ClassNotFound,但是,如果是由于缺少java类,那么从第二次开始它是如何工作的?

2 个答案:

答案 0 :(得分:0)

请注意,如果MainActivity类的包与AndroidManifest.xml中的属性包匹配,请再次检查android / src / main / java。

答案 1 :(得分:-2)

我也遇到了这个问题,只需将com.google.gms:google-services:3.2.1更新为com.google.gms:google-services:4.2.0,在“ Android \ App \ build.grandle”中出了问题。

有关更多信息:Problem reported in github