package android.support.v7.internal.view.menu does not exist: cannot find symbol class MenuBuilder

前端 未结 2 1885
春和景丽
春和景丽 2021-02-12 12:18

I just upgraded my support library from compile \'com.android.support:appcompat-v7:23.1.1\' from compile \'com.android.support:appcompat-v7:23.1.0\'. <

相关标签:
2条回答
  • 2021-02-12 12:45

    Try to clean the solution and the Build it again. You might have problems with the versions of packages or dlls in your solution.

    0 讨论(0)
  • 2021-02-12 12:47

    They changed the package slightly, removing the 'internal'. You just need to change your imports:

    android.support.v7.internal.view.menu.MenuBuilder

    to

    android.support.v7.view.menu.MenuBuilder

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