Home
last modified time | relevance | path

Searched refs:recentlyOpenedApps (Results 1 – 8 of 8) sorted by relevance

/expo/packages/expo-dev-launcher/ios/Tests/
H A DEXDevLauncherRecentlyOpenedAppsRegistryTests.swift18 let recentlyOpenedApps = registry.recentlyOpenedApps() in testAddAppToRegistry() variable
19 XCTAssertNotNil(recentlyOpenedApps[0]) in testAddAppToRegistry()
20 XCTAssertEqual(recentlyOpenedApps[0]["url"] as! String, urlString) in testAddAppToRegistry()
32 let recentlyOpenedApps = registry2.recentlyOpenedApps() in testRegistryPersistence() variable
34 XCTAssertNotNil(recentlyOpenedApps[0]) in testRegistryPersistence()
35 XCTAssertEqual(recentlyOpenedApps[0]["url"] as! String, urlString) in testRegistryPersistence()
45 let recentlyOpenedApps = registryNew.recentlyOpenedApps() in testRemoveOldAppFromRegistry() variable
47 XCTAssertTrue(recentlyOpenedApps.count == 0) in testRemoveOldAppFromRegistry()
H A DEXDevLauncherRecentlyOpenedAppsRegistryTest.swift15 expect(appsRegistry.recentlyOpenedApps().count).to(equal(0)) in spec()
25 let openedApps = appsRegistry.recentlyOpenedApps() in spec()
/expo/packages/expo-dev-launcher/ios/
H A DEXDevLauncherRecentlyOpenedAppsRegistry.swift68 public func recentlyOpenedApps() -> [[String: Any]] { in recentlyOpenedApps() function
89 let recentlyOpenedApps = self.recentlyOpenedApps() in mostRecentApp() variable
91 …if let mostRecentApp = recentlyOpenedApps.max(by: { ($0["timestamp"] as? Int64) ?? 0 < ($1["timest… in mostRecentApp()
H A DDevLauncherInternal.swift55 … return EXDevLauncherController.sharedInstance().recentlyOpenedAppsRegistry.recentlyOpenedApps() in definition()
H A DEXDevLauncherController.h61 - (NSDictionary *)recentlyOpenedApps;
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/launcher/
H A DDevLauncherRecentlyOpenedAppsRegistry.kt92 val recentlyOpenedApps = getRecentlyOpenedApps() in <lambda>() constant
94 return if (recentlyOpenedApps.isNotEmpty()) { in <lambda>()
95 recentlyOpenedApps.maxByOrNull { it.timestamp } in <lambda>()
/expo/packages/expo-dev-launcher/bundle/native-modules/
H A DDevLauncherInternal.ts16 const recentlyOpenedApps = await DevLauncher.getRecentlyOpenedApps(); constant
17 return recentlyOpenedApps;
/expo/packages/expo-dev-launcher/bundle/components/
H A DDeepLinkModal.tsx74 const { data: recentlyOpenedApps = [], isFetching: isFetchingApps } = useRecentlyOpenedApps();
88 const hasPackagers = devSessions.length > 0 || recentlyOpenedApps.length > 0;
131 {recentlyOpenedApps.length > 0 && (
134 {recentlyOpenedApps.map((app, index, arr) => {