Unable to instantiate fragment make sure class name exists, is public, and has an empty constructor that is public
Is it because my Fr
In my case, I was missing the constructor, the post from @eoghanm above helped me
public static class MyDialogFragment extends DialogFragment { public MyDialogFragment(){ } ... }