error: supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath

后端 未结 15 1190
误落风尘
误落风尘 2020-12-05 22:31

I can\'t compile my Android Kotlin project.

I have no idea what is this...

Gradle log:

error: supertypes of the following classes ca

15条回答
  •  被撕碎了的回忆
    2020-12-05 23:09

    In my case, I had removed an unused OnFragmentInteractionListener in a fragment:

    public interface OnFragmentInteractionListener {
        // TODO: Update argument type and name
        void onFragmentInteraction(Uri uri);
    }
    

    However, In my activity I had failed to remove a reference to this OnFragmentInteractionListener :

    public class MainActivity extends AppCompatActivity implements
            MyFragment.OnFragmentInteractionListener {
    

    Strangely, instead of giving an error that indicated the OnFragmentInteractionListener was not found, I received the above "supertypes of the following classes cannot be resolved" with no reference to the classes.

提交回复
热议问题