Appcompat does not work on Explay Fresh 4.2.2 - it crashes. The crash is NoClassDeffFoundError(android.support.v7.view.menu.MenuBuilder) Turned out there is a bug in their ROM. Manufacturer has modified ROM and added a public method setOptionalIconsVisible to android.view.Menu interface. Because of that the runtime can't load MenuBuilder class because it had no such public method (it was package local)
So I've made MenuBuilder.setOptionalIconsVisible public (was package local) and added a test to verify that. I do understand that the change is really strange and you probably don't fix ROM specific bugs, however the fix is already ready and it is pretty simple and won't break anything since MenuBuilder is already hidden. So I wonder if someone can review the change and probably merge it. The change: https://android-review.googlesource.com/#/c/198301/ Thanks. -- You received this message because you are subscribed to the Google Groups "adt-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
