Android In App Review

Jan 28 2021 · Kotlin 1.4, Android 5, Android Studio 4

Part 1: Implementing In App Review

05. Provide Dependencies

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 04. Store Review Preferences Next episode: 06. Implement The In App Review Manager

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Whenever you have multiple objects you need to create and pass around the application, you generally speak about something called dependency injection and dependency graphs.

@Module
@InstallIn(ApplicationComponent::class)
class InAppReviewProviders {

}
@Provides
@Singleton
fun provideInAppReviewPreferences(@ApplicationContext context: Context): SharedPreferences {
  return context.getSharedPreferences(KEY_IN_APP_REVIEW_PREFERENCES, Context.MODE_PRIVATE)
}

@Provides
@Singleton
fun provideReviewManager(@ApplicationContext context: Context): ReviewManager {
  return ReviewManagerFactory.create(context)
}
@Module
@InstallIn(ApplicationComponent::class)
abstract class InAppReviewBinds {

}
@Binds
@Singleton
abstract fun bindInAppReviewPreferences(
  inAppReviewPreferencesImpl: InAppReviewPreferencesImpl
): InAppReviewPreferences