Home
last modified time | relevance | path

Searched refs:updatesInterface (Results 1 – 10 of 10) sorted by relevance

/expo/packages/expo-dev-launcher/android/src/test/java/expo/modules/devlauncher/helpers/
H A DDevLauncherUpdatesHelperTest.kt31 val updatesInterface = mockUpdatesInterface { in getManifest() constant
34 val loadedUpdate = updatesInterface.loadUpdate(configuration, context) { true } in getManifest()
40 val updatesInterface = mockUpdatesInterface { in <lambda>() constant
43 updatesInterface.loadUpdate(configuration, context) { false } in <lambda>()
47 val updatesInterface = mockk<UpdatesInterface>() in mockUpdatesInterface() constant
50 updatesInterface.fetchUpdateWithConfiguration(any(), any(), capture(slot)) in mockUpdatesInterface()
63 return updatesInterface in mockUpdatesInterface()
/expo/packages/expo-dev-launcher/android/src/testDebug/java/expo/modules/devlauncher/launcher/loaders/
H A DDevLauncherAppLoaderFactoryTest.kt67 …fun `loads app locally if manifest indicates developer tool and no updatesInterface exists`() = ru… in <lambda>()
81 fun `throws if manifest is published and no updatesInterface exists`() { in throws if manifest is published and no updatesInterface exists()
95 …fun `loads app locally if manifest indicates developer tool and updatesInterface exists`() = runBl… in <lambda>()
110 …fun `loads published app if manifest is published and updatesInterface exists`() = runBlocking<Uni… in <lambda>()
125 val updatesInterface = mockk<UpdatesInterface>() in mockUpdatesInterface() constant
133 updatesInterface.loadUpdate( in mockUpdatesInterface()
151 single { updatesInterface } in mockUpdatesInterface()
/expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/launcher/loaders/
H A DDevLauncherAppLoaderFactory.kt27 private val updatesInterface: UpdatesInterface? by optInject() in createAppLoader() constant in expo.modules.devlauncher.launcher.loaders.DevLauncherAppLoaderFactory
41 if (updatesInterface == null) { in createAppLoader()
49 val update = updatesInterface!!.loadUpdate(configuration, context) { in createAppLoader()
/expo/packages/expo-dev-launcher/android/src/with-updates/expo/modules/devlauncher/
H A DDevLauncherUpdatesInterfaceDelegate.kt8 … DevLauncherController.instance.updatesInterface = UpdatesDevLauncherController.initialize(context) in initializeUpdatesInterface()
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/launcher/
H A DDevLauncherControllerInterface.kt32 var updatesInterface: UpdatesInterface? variable
/expo/packages/expo-dev-launcher/ios/ReactDelegateHandler/
H A DExpoDevLauncherReactDelegateHandler.swift50 EXDevLauncherController.sharedInstance().updatesInterface = sharedController in createBridge()
/expo/packages/expo-dev-launcher/android/src/release/java/expo/modules/devlauncher/
H A DDevLauncherController.kt43 override var updatesInterface: UpdatesInterface? variable in expo.modules.devlauncher.DevLauncherController
/expo/packages/expo-dev-launcher/ios/
H A DEXDevLauncherController.h40 @property (nonatomic, strong) id updatesInterface;
H A DEXDevLauncherController.m586 if (self.updatesInterface) {
587 ((id<EXUpdatesExternalInterface>)self.updatesInterface).bridge = self.appBridge;
765 BOOL expoUpdatesInstalled = EXDevLauncherController.sharedInstance.updatesInterface != nil;
/expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/
H A DDevLauncherController.kt59 override var updatesInterface: UpdatesInterface? in <lambda>() variable in expo.modules.devlauncher.DevLauncherController