Classes cannot be accessed from outside package

Let me guess

Your initial declaration of class PUBLICClass was not public, then you made it Public, can you try to clean and rebuild your project ?


public SmartSaverCals(Context context)
{
    this.context= context;
}

add public to Your constructor.in my case problem solved


Check the default superclass's constructor. It need be public or protected.