I just received an accident message from one of the users with the following error trace:
Unable to instantiate fragment packageName.Wizard$WizardFirstPage: make sure class name exists, is public, and has an empty constructor that is public
Here are the class declarations:
public class Wizard extends Other
public abstract class Other extends BaseActivity
public abstract class BaseActivity extends ActionBarActivity
All classes are publicly accessible, named, and do not have a user-defined constructor.
Regarding the WizardFirstPage : (defined in the Wizard )
public class WizardFirstPage extends Fragment
No custom constructor.
What am I missing?
source share