Home
last modified time | relevance | path

Searched refs:DevLauncherIntentRegistryInterface (Results 1 – 5 of 5) sorted by relevance

/expo/packages/expo-dev-client/android/src/androidTest/java/com/expo/modules/devclient/tests/
H A DDevClientDeepLinkTest.kt15 import expo.modules.devlauncher.launcher.DevLauncherIntentRegistryInterface
26 …val intentRegistry: DevLauncherIntentRegistryInterface = object : DevLauncherIntentRegistryInterfa… in checks_if_pending_deep_link_is_displayed()
39 declareInDevLauncherScope<DevLauncherIntentRegistryInterface> { in checks_if_pending_deep_link_is_displayed()
49 val intentRegistry = it.koin().get<DevLauncherIntentRegistryInterface>() in <lambda>()
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/launcher/
H A DDevLauncherIntentRegistry.kt8 interface DevLauncherIntentRegistryInterface { in <lambda>() interface
18 class DevLauncherIntentRegistry : DevLauncherIntentRegistryInterface {
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/koin/
H A DDevLauncherKoinApp.kt5 import expo.modules.devlauncher.launcher.DevLauncherIntentRegistryInterface
21 single<DevLauncherIntentRegistryInterface> { DevLauncherIntentRegistry() } in <lambda>()
/expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/modules/
H A DDevLauncherInternalModule.kt18 import expo.modules.devlauncher.launcher.DevLauncherIntentRegistryInterface
32 private val intentRegistry: DevLauncherIntentRegistryInterface by inject()
/expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/
H A DDevLauncherController.kt55 private val pendingIntentRegistry: DevLauncherIntentRegistryInterface by inject() in <lambda>()