'How can I fix the [Dagger/MissingBinding] problem on Android Studio? I can't run the app without fixing this

There is one code that I am trying to fix here and this is causing the error.

@Singleton
public abstract static class ApplicationC implements SpotifyApplication_GeneratedInjector,
  ApplicationComponent,
  HiltWrapper_ActivityRetainedComponentManager_LifecycleComponentBuilderEntryPoint,
  ServiceComponentManager.ServiceComponentBuilderEntryPoint,
  GeneratedComponent {

}

The error I get is

C:\Users\goken\Desktop\SpotifyCloneYT-master\app\build\generated\source\kapt\debug\com\plcoding\spotifycloneyt\SpotifyApplication_HiltComponents.java:155: error: [Dagger/MissingBinding] com.google.android.exoplayer2.SimpleExoPlayer cannot be provided without an @Inject constructor or an @Provides-annotated method.

public abstract static class ApplicationC implements SpotifyApplication_GeneratedInjector, ^

How can I fix this????



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source