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 +12 -0
- package/README.md +0 -14
- package/android/build.gradle +1 -1
- package/android/src/debug/assets/expo_dev_launcher_android.bundle +1043 -1040
- package/ios/main.jsbundle +1035 -1032
- package/package.json +3 -3
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.
|