This class should be public (android.support.v7.internal.widget.ActionBarView.HomeView) Lint Error


You may get this error message when you have android v7-appcompat library linked to your project and you try to export your project folder to generate a signed/unsigned .apk file.

Why this error message ?

This is a Lint: Instantiatable error message which says that "Classes registered in the manifest file are to be instantiable" i.e. All the Activities, Services, and Broadcast Receivers that are registered in AndroidManifest.xml must be public. It must have an empty public constructor and if it's an inner class, it must be a static inner class.

Solution :

Right Click appcompat_v7 project folder -> Properties -> Lint Error Checking, and look for Instantiatable and change the Severity from Fatal to Warning!

⚡️ Clean and Build your Project folders and you would see that this error message is not just a warning.

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap