Remove Hilt.

Change-Id: Ided3730b43b5f7cce495a69363f12d61273021cb
pull/1493/head
Jaehwa Noh 1 year ago
parent 63b7f19963
commit 484a6bde99

@ -18,11 +18,9 @@ package com.google.samples.apps.nowinandroid.util
import android.util.Log
import androidx.profileinstaller.ProfileVerifier
import com.google.samples.apps.nowinandroid.core.network.di.ApplicationScope
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.guava.await
import kotlinx.coroutines.launch
import javax.inject.Inject
/**
* Logs the app's Baseline Profile Compilation Status using [ProfileVerifier].
@ -48,8 +46,8 @@ import javax.inject.Inject
*
* @see androidx.profileinstaller.ProfileVerifier.CompilationStatus.ResultCode
*/
class ProfileVerifierLogger @Inject constructor(
@ApplicationScope private val scope: CoroutineScope,
class ProfileVerifierLogger (
private val scope: CoroutineScope,
) {
companion object {
private const val TAG = "ProfileInstaller"

Loading…
Cancel
Save