15 lines
531 B
Kotlin
15 lines
531 B
Kotlin
package com.gh.common.provider
|
|
|
|
import android.content.Context
|
|
import com.therouter.router.Route
|
|
import com.gh.common.exposure.ExposureManager
|
|
import com.gh.gamecenter.common.constant.RouteConsts
|
|
import com.gh.gamecenter.feature.exposure.ExposureEvent
|
|
import com.gh.gamecenter.feature.provider.IExposureManagerProvider
|
|
|
|
@com.therouter.inject.ServiceProvider
|
|
class ExposureManagerProviderImpl: IExposureManagerProvider {
|
|
override fun logExposure(exposureEvent: ExposureEvent) {
|
|
ExposureManager.log(exposureEvent)
|
|
}
|
|
} |