Coverage Summary for Class: GooglePlayModule (com.vsevolodganin.clicktrack.di.module)
Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
GooglePlayModule |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/6)
|
GooglePlayModule$DefaultImpls |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/3)
|
Total |
0%
(0/2)
|
|
0%
(0/2)
|
0%
(0/9)
|
package com.vsevolodganin.clicktrack.di.module
import android.app.Application
import com.google.android.play.core.review.ReviewManager
import com.google.android.play.core.review.ReviewManagerFactory
import me.tatarka.inject.annotations.Provides
interface GooglePlayModule {
@Provides
fun provideReviewManager(application: Application): ReviewManager {
return ReviewManagerFactory.create(application)
}
}