expo-dev-menu 6.0.5 → 6.0.7
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 +14 -0
- package/android/build.gradle +2 -2
- package/android/src/debug/java/expo/modules/devmenu/DevMenuManager.kt +1 -1
- package/android/src/debug/java/expo/modules/devmenu/react/DevMenuAwareReactActivity.kt +1 -1
- package/android/src/main/java/expo/modules/devmenu/DevMenuPackage.kt +1 -1
- package/assets/EXDevMenuApp.android.js +416 -414
- package/assets/EXDevMenuApp.ios.js +416 -414
- package/package.json +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 6.0.7 — 2024-11-07
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [Android] Fixed mutiple reload when pressing `r` in CLI on react-native old architecture mode. ([#32532](https://github.com/expo/expo/pull/32532) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
19
|
+
## 6.0.6 — 2024-11-04
|
|
20
|
+
|
|
21
|
+
### 💡 Others
|
|
22
|
+
|
|
23
|
+
- Remove unused `graphql` dependencies. ([#32065](https://github.com/expo/expo/pull/32065) by [@kitten](https://github.com/kitten))
|
|
24
|
+
|
|
13
25
|
## 6.0.5 — 2024-10-29
|
|
14
26
|
|
|
15
27
|
_This version does not introduce any user-facing changes._
|
|
@@ -63,6 +75,8 @@ _This version does not introduce any user-facing changes._
|
|
|
63
75
|
- Remove unused `semver` dependency. ([#32063](https://github.com/expo/expo/pull/32063) by [@kitten](https://github.com/kitten))
|
|
64
76
|
- Fixed broken unit tests since React Native 0.76 bump. ([#32210](https://github.com/expo/expo/pull/32210) by [@kudo](https://github.com/kudo))
|
|
65
77
|
|
|
78
|
+
### 📚 3rd party library updates
|
|
79
|
+
|
|
66
80
|
## 5.0.21 - 2024-08-23
|
|
67
81
|
|
|
68
82
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '6.0.
|
|
4
|
+
version = '6.0.7'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
namespace "expo.modules.devmenu"
|
|
21
21
|
defaultConfig {
|
|
22
22
|
versionCode 10
|
|
23
|
-
versionName '6.0.
|
|
23
|
+
versionName '6.0.7'
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
buildTypes {
|
|
@@ -93,7 +93,7 @@ object DevMenuManager : DevMenuManagerInterface, LifecycleEventListener {
|
|
|
93
93
|
if (!this::devMenuHost.isInitialized) {
|
|
94
94
|
devMenuHost = ReactHostWrapper(
|
|
95
95
|
reactNativeHost = DevMenuReactNativeHost(application, useDeveloperSupport),
|
|
96
|
-
|
|
96
|
+
reactHostProvider = { DevMenuReactHost.create(application, useDeveloperSupport) }
|
|
97
97
|
)
|
|
98
98
|
UiThreadUtil.runOnUiThread {
|
|
99
99
|
devMenuHost.start()
|
|
@@ -19,7 +19,7 @@ abstract class DevMenuAwareReactActivity : ReactActivity() {
|
|
|
19
19
|
DevMenuManager.initializeWithReactHost(
|
|
20
20
|
ReactHostWrapper(
|
|
21
21
|
reactNativeHost = reactNativeHost,
|
|
22
|
-
|
|
22
|
+
reactHostProvider = { (applicationContext as ReactApplication).reactHost }
|
|
23
23
|
)
|
|
24
24
|
)
|
|
25
25
|
} else {
|
|
@@ -38,7 +38,7 @@ class DevMenuPackage : Package, ReactPackage {
|
|
|
38
38
|
DevMenuManager.initializeWithReactHost(
|
|
39
39
|
ReactHostWrapper(
|
|
40
40
|
reactNativeHost = (activity.application as ReactApplication).reactNativeHost,
|
|
41
|
-
|
|
41
|
+
reactHostProvider = { (activity.application as ReactApplication).reactHost }
|
|
42
42
|
)
|
|
43
43
|
)
|
|
44
44
|
} else {
|