expo-dev-launcher 5.1.0-canary-20250219-4a5dade → 6.0.0-canary-20250303-4dba60e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/CHANGELOG.md +32 -5
  2. package/android/src/debug/assets/expo_dev_launcher_android.bundle +1017 -1022
  3. package/android/src/debug/java/expo/modules/devlauncher/DevLauncherPackageDelegate.kt +0 -2
  4. package/android/src/debug/java/expo/modules/devlauncher/launcher/DevLauncherReactHost.kt +2 -0
  5. package/android/src/debug/java/expo/modules/devlauncher/launcher/DevLauncherReactNativeHost.kt +2 -0
  6. package/android/src/main/java/expo/modules/devlauncher/modules/DevLauncherInternalModule.kt +237 -0
  7. package/android/src/release/java/expo/modules/devlauncher/DevLauncherController.kt +5 -0
  8. package/bundle/components/UrlDropdown.tsx +1 -1
  9. package/bundle/native-modules/DevLauncherInternal.ts +3 -13
  10. package/bundle/providers/PendingDeepLinkProvider.tsx +1 -3
  11. package/expo-dev-launcher.podspec +1 -0
  12. package/expo-module.config.json +1 -0
  13. package/ios/EXDevLauncherController.h +8 -1
  14. package/ios/EXDevLauncherController.m +13 -24
  15. package/ios/EXDevLauncherReactNativeFactory.h +19 -0
  16. package/ios/EXDevLauncherReactNativeFactory.mm +14 -0
  17. package/ios/EXRCTAppDelegateInterceptor.h +2 -2
  18. package/ios/EXRCTAppDelegateInterceptor.mm +1 -1
  19. package/ios/ReactDelegateHandler/ExpoDevLauncherReactDelegateHandler.swift +12 -10
  20. package/ios/Tests/EXDevLauncherControllerTest.swift +2 -2
  21. package/ios/main.jsbundle +1013 -1018
  22. package/package.json +12 -13
  23. package/android/src/debug/java/expo/modules/devlauncher/modules/DevLauncherInternalModule.kt +0 -292
  24. package/ios/EXDevLauncherAppDelegate.h +0 -13
  25. package/ios/EXDevLauncherAppDelegate.mm +0 -50
  26. /package/android/src/{debug → main}/java/expo/modules/devlauncher/launcher/errors/DevLauncherErrorRegistry.kt +0 -0
package/CHANGELOG.md CHANGED
@@ -4,17 +4,14 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
+ - upgrade RN to 0.78 ([#35050](https://github.com/expo/expo/pull/35050) by [@vonovak](https://github.com/vonovak))
8
+
7
9
  ### 🎉 New features
8
10
 
9
11
  - support react-native 0.77 ([#33379](https://github.com/expo/expo/pull/33379) by [@vonovak](https://github.com/vonovak))
10
12
 
11
13
  ### 🐛 Bug fixes
12
14
 
13
- - [Android] Fixed issue with initialization of the dev client being wrong on the old architecture ([#34398](https://github.com/expo/expo/pull/34398) by [@chrfalch](https://github.com/chrfalch))
14
- - [iOS] Fixed black stuck screen when loading an unreachable server from last opened url. ([#34067](https://github.com/expo/expo/pull/34067) by [@kudo](https://github.com/kudo))
15
- - [iOS] Read EAS project id and url from manifest instead of updates interface. ([#34342](https://github.com/expo/expo/pull/34342) by [@gabrieldonadel](https://github.com/gabrieldonadel))
16
- - [Android] Read EAS project id and url from AndroidManifest instead of updates interface. ([#34342](https://github.com/expo/expo/pull/34342) by [@gabrieldonadel](https://github.com/gabrieldonadel))
17
-
18
15
  ### 💡 Others
19
16
 
20
17
  - [6/n] upgrade to react-native 0.77 - improve 0.76 compatibility ([#34078](https://github.com/expo/expo/pull/34078) by [@vonovak](https://github.com/vonovak))
@@ -22,6 +19,36 @@
22
19
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
23
20
  - [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
24
21
  - Removed remote debugging dead code. ([#34977](https://github.com/expo/expo/pull/34977) by [@kudo](https://github.com/kudo))
22
+ - [android] Migrate DevLauncherInternalModule to Expo Modules API ([#35166](https://github.com/expo/expo/pull/35166) by [@gabrieldonadel](https://github.com/gabrieldonadel))
23
+
24
+ ## 5.0.29 - 2025-02-10
25
+
26
+ _This version does not introduce any user-facing changes._
27
+
28
+ ## 5.0.28 - 2025-02-06
29
+
30
+ _This version does not introduce any user-facing changes._
31
+
32
+ ## 5.0.27 - 2025-01-31
33
+
34
+ _This version does not introduce any user-facing changes._
35
+
36
+ ## 5.0.26 - 2025-01-27
37
+
38
+ _This version does not introduce any user-facing changes._
39
+
40
+ ## 5.0.23 - 2025-01-10
41
+
42
+ ### 🐛 Bug fixes
43
+
44
+ - [Android] Fixed issue with initialization of the dev client being wrong on the old architecture ([#34398](https://github.com/expo/expo/pull/34398) by [@chrfalch](https://github.com/chrfalch))
45
+ - [iOS] Fixed black stuck screen when loading an unreachable server from last opened url. ([#34067](https://github.com/expo/expo/pull/34067) by [@kudo](https://github.com/kudo))
46
+ - [iOS] Read EAS project id and url from manifest instead of updates interface. ([#34342](https://github.com/expo/expo/pull/34342) by [@gabrieldonadel](https://github.com/gabrieldonadel))
47
+ - [Android] Read EAS project id and url from AndroidManifest instead of updates interface. ([#34342](https://github.com/expo/expo/pull/34342) by [@gabrieldonadel](https://github.com/gabrieldonadel))
48
+
49
+ ## 5.0.22 - 2025-01-08
50
+
51
+ _This version does not introduce any user-facing changes._
25
52
 
26
53
  ## 5.0.21 - 2024-12-24
27
54