expo-dev-launcher 5.0.26 → 5.0.28

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,14 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 5.0.28 — 2025-02-06
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 5.0.27 — 2025-01-31
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 5.0.26 — 2025-01-27
14
22
 
15
23
  _This version does not introduce any user-facing changes._
@@ -32,6 +40,7 @@ _This version does not introduce any user-facing changes._
32
40
 
33
41
  - [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))
34
42
  - [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))
43
+ - [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))
35
44
 
36
45
  ## 5.0.22 — 2025-01-08
37
46
 
@@ -17,7 +17,7 @@ android {
17
17
  namespace "expo.modules.devlauncher"
18
18
  defaultConfig {
19
19
  versionCode 9
20
- versionName "5.0.26"
20
+ versionName "5.0.28"
21
21
  }
22
22
 
23
23
  buildTypes {
@@ -10,6 +10,7 @@ import android.net.Uri
10
10
  import com.facebook.react.bridge.*
11
11
  import com.facebook.react.modules.core.DeviceEventManagerModule.RCTDeviceEventEmitter
12
12
  import expo.modules.core.utilities.EmulatorUtilities
13
+ import expo.modules.devlauncher.DevLauncherController
13
14
  import expo.modules.devlauncher.DevLauncherController.Companion.wasInitialized
14
15
  import expo.modules.devlauncher.helpers.DevLauncherInstallationIDHelper
15
16
  import expo.modules.devlauncher.koin.DevLauncherKoinComponent
@@ -60,7 +61,9 @@ class DevLauncherInternalModule(reactContext: ReactApplicationContext?) :
60
61
  val map = Arguments.createMap()
61
62
 
62
63
  val runtimeVersion = controller.updatesInterface?.runtimeVersion
63
- val projectUri = controller.updatesInterface?.updateUrl
64
+ val projectUrl = DevLauncherController.getMetadataValue(reactApplicationContext, "expo.modules.updates.EXPO_UPDATE_URL")
65
+
66
+ val projectUri = Uri.parse(projectUrl)
64
67
  val appId = projectUri?.lastPathSegment ?: ""
65
68
 
66
69
  val isModernManifestProtocol = projectUri?.host.equals("u.expo.dev") || projectUri?.host.equals("staging-u.expo.dev")
@@ -1,7 +1,7 @@
1
1
  import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
2
 
3
3
  plugins {
4
- kotlin("jvm") version "1.9.24"
4
+ kotlin("jvm") version "1.9.25"
5
5
  id("java-gradle-plugin")
6
6
  }
7
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "5.0.26",
4
+ "version": "5.0.28",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "main": "build/DevLauncher.js",
7
7
  "types": "build/DevLauncher.d.ts",
@@ -31,7 +31,7 @@
31
31
  "homepage": "https://docs.expo.dev",
32
32
  "dependencies": {
33
33
  "ajv": "8.11.0",
34
- "expo-dev-menu": "6.0.18",
34
+ "expo-dev-menu": "6.0.19",
35
35
  "expo-manifests": "~0.15.5",
36
36
  "resolve-from": "^5.0.0"
37
37
  },
@@ -44,14 +44,14 @@
44
44
  "@testing-library/jest-native": "^4.0.4",
45
45
  "@testing-library/react-native": "^12.5.1",
46
46
  "babel-plugin-module-resolver": "^5.0.0",
47
- "babel-preset-expo": "~12.0.6",
47
+ "babel-preset-expo": "~12.0.7",
48
48
  "date-fns": "^2.28.0",
49
49
  "expo-dev-client-components": "2.0.3",
50
50
  "expo-module-scripts": "^4.0.3",
51
51
  "graphql": "^16.0.1",
52
52
  "graphql-request": "^3.6.1",
53
53
  "react": "18.3.1",
54
- "react-native": "0.76.6",
54
+ "react-native": "0.76.7",
55
55
  "react-query": "^3.34.16",
56
56
  "url": "^0.11.0"
57
57
  },
@@ -66,5 +66,5 @@
66
66
  ],
67
67
  "testTimeout": 15000
68
68
  },
69
- "gitHead": "3fd37fd31fd818d833e85c4723b1578010da6967"
69
+ "gitHead": "9442f00874e0cd738030abae80e5bdef184a2581"
70
70
  }