expo-dev-launcher 5.0.23 → 5.0.25

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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 5.0.25 — 2025-01-20
14
+
15
+ ### 💡 Others
16
+
17
+ - rebuild bundles with 0.77.0-rc.7 ([#34292](https://github.com/expo/expo/pull/34292) by [@vonovak](https://github.com/vonovak))
18
+
19
+ ## 5.0.24 — 2025-01-19
20
+
21
+ ### 🎉 New features
22
+
23
+ - support RN 0.77 in SDK 52 ([#34088](https://github.com/expo/expo/pull/34088) by [@vonovak](https://github.com/vonovak))
24
+
13
25
  ## 5.0.23 — 2025-01-10
14
26
 
15
27
  ### 🐛 Bug fixes
package/README.md CHANGED
@@ -12,20 +12,6 @@ The `expo-dev-launcher` repository consists of two different parts, the exported
12
12
 
13
13
  Local development is usually done through `bare-expo`.
14
14
 
15
- To use `dev-client` when running `bare-expo` on Android, open [MainApplication.kt](/apps/bare-expo/android/app/src/main/java/dev/expo/payments/MainApplication.kt) and set the `USE_DEV_CLIENT` value to `true`.
16
-
17
- ```diff
18
- - private const val USE_DEV_CLIENT = false;
19
- + private const val USE_DEV_CLIENT = true;
20
- ```
21
-
22
- To use `dev-client` when running `bare-expo` on iOS, open [AppDelegate.mm](/apps/bare-expo/ios/BareExpo/AppDelegate.mm) and set the `USE_DEV_CLIENT` value to `YES`.
23
-
24
- ```diff
25
- - BOOL useDevClient = NO;
26
- + BOOL useDevClient = YES;
27
- ```
28
-
29
15
  ### Making JavaScript changes inside the `bundle` folder
30
16
 
31
17
  To update the JavaScript code inside the `bundle` folder, you need to run the `dev-launcher` bundler locally.
@@ -17,7 +17,7 @@ android {
17
17
  namespace "expo.modules.devlauncher"
18
18
  defaultConfig {
19
19
  versionCode 9
20
- versionName "5.0.23"
20
+ versionName "5.0.25"
21
21
  }
22
22
 
23
23
  buildTypes {