expo-dev-launcher 1.2.1 → 1.3.1
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 +23 -0
- package/android/build.gradle +9 -12
- package/android/src/debug/AndroidManifest.xml +27 -1
- package/android/src/debug/assets/expo_dev_launcher_android.bundle +25 -24
- package/android/src/{main → debug}/java/expo/modules/devlauncher/helpers/DevLauncherReactUtils.kt +3 -1
- package/android/src/{main → debug}/java/expo/modules/devlauncher/launcher/DevLauncherActivity.kt +0 -0
- package/android/src/{main → debug}/java/expo/modules/devlauncher/launcher/errors/DevLauncherAppError.kt +0 -0
- package/android/src/{main → debug}/java/expo/modules/devlauncher/launcher/errors/DevLauncherErrorActivity.kt +0 -0
- package/android/src/{main → debug}/java/expo/modules/devlauncher/launcher/errors/DevLauncherErrorRegistry.kt +0 -0
- package/android/src/{main → debug}/java/expo/modules/devlauncher/launcher/errors/DevLauncherStackAdapter.kt +0 -0
- package/android/src/{main → debug}/java/expo/modules/devlauncher/launcher/errors/DevLauncherUncaughtExceptionHandler.kt +6 -9
- package/android/src/{main → debug}/java/expo/modules/devlauncher/react/DevLauncherDevSupportManagerSwapper.kt +0 -0
- package/android/src/main/AndroidManifest.xml +1 -30
- package/android/src/main/java/expo/modules/devlauncher/logs/DevLauncherRemoteLog.kt +13 -37
- package/android/src/main/java/expo/modules/devlauncher/logs/DevLauncherRemoteLogManager.kt +27 -31
- package/android/src/react-native-64/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-65/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-66/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-67/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/android/src/react-native-69/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +5 -0
- package/bundle/components/AppHeader.tsx +7 -1
- package/bundle/components/ScreenContainer.tsx +8 -0
- package/bundle/native-modules/DevLauncherAuth.ts +21 -10
- package/bundle/providers/DevSessionsProvider.tsx +2 -3
- package/bundle/screens/BranchesScreen.tsx +18 -15
- package/bundle/screens/ExtensionsScreen.tsx +37 -38
- package/bundle/screens/ExtensionsStack.tsx +1 -0
- package/bundle/screens/HomeScreen.tsx +9 -2
- package/bundle/screens/SettingsScreen.tsx +113 -110
- package/bundle/screens/UpdatesScreen.tsx +44 -39
- package/ios/EXDevLauncherController.m +3 -0
- package/ios/EXDevLauncherURLHelper.swift +30 -19
- package/ios/Errors/EXDevLauncherUncaughtExceptionHandler.swift +14 -10
- package/ios/Logs/EXDevLauncherRemoteLogsManager.swift +39 -34
- package/ios/main.jsbundle +25 -24
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,29 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 1.3.1 — 2022-10-11
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fixed development servers not showing up in the `expo-dev-launcher` on the first boot. ([#19286](https://github.com/expo/expo/pull/19286) by [@lukmccall](https://github.com/lukmccall))
|
|
18
|
+
|
|
19
|
+
## 1.3.0 — 2022-09-16
|
|
20
|
+
|
|
21
|
+
### 🎉 New features
|
|
22
|
+
|
|
23
|
+
- Better support for landscape orientation. ([#19010](https://github.com/expo/expo/pull/19010) by [@ajsmth](https://github.com/ajsmth))
|
|
24
|
+
|
|
25
|
+
### 🐛 Bug fixes
|
|
26
|
+
|
|
27
|
+
- Remove the deprecated `Linking.removeEventListener` in expo-dev-launcher bundle. ([#18939](https://github.com/expo/expo/pull/18939) by [@kudo](https://github.com/kudo))
|
|
28
|
+
- Fixed the incompatibility with react-native-v8 on Android. ([#19117](https://github.com/expo/expo/pull/19117) by [@kudo](https://github.com/kudo))
|
|
29
|
+
- Fixed crash when loading bundle without explicit port on Android. ([#19136](https://github.com/expo/expo/pull/19136) by [@kudo](https://github.com/kudo))
|
|
30
|
+
|
|
31
|
+
### 💡 Others
|
|
32
|
+
|
|
33
|
+
- Switched uncaught exception logging to use metro websocket instead of expo-cli logUrl. ([#18787](https://github.com/expo/expo/pull/18787) by [@esamelson](https://github.com/esamelson))
|
|
34
|
+
- Disable onboarding popup with URL query param. ([#19024](https://github.com/expo/expo/pull/19024) by [@douglowder](https://github.com/douglowder))
|
|
35
|
+
|
|
13
36
|
## 1.2.1 — 2022-08-16
|
|
14
37
|
|
|
15
38
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -40,7 +40,7 @@ android {
|
|
|
40
40
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
41
41
|
targetSdkVersion safeExtGet("targetSdkVersion", 31)
|
|
42
42
|
versionCode 9
|
|
43
|
-
versionName "1.
|
|
43
|
+
versionName "1.3.1"
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
lintOptions {
|
|
@@ -68,8 +68,15 @@ android {
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
sourceSets {
|
|
71
|
-
|
|
71
|
+
debug {
|
|
72
72
|
java {
|
|
73
|
+
def expoPackageVersion = getExpoPackageVersion()
|
|
74
|
+
if (expoPackageVersion >= versionToNumber(45, 0, 0)) {
|
|
75
|
+
srcDirs += "src/expo-45"
|
|
76
|
+
} else {
|
|
77
|
+
srcDirs += "src/expo-44"
|
|
78
|
+
}
|
|
79
|
+
|
|
73
80
|
def rnVersion = getRNVersion()
|
|
74
81
|
if (rnVersion >= versionToNumber(0, 69, 0)) {
|
|
75
82
|
srcDirs += "src/react-native-69"
|
|
@@ -90,16 +97,6 @@ android {
|
|
|
90
97
|
}
|
|
91
98
|
}
|
|
92
99
|
}
|
|
93
|
-
debug {
|
|
94
|
-
java {
|
|
95
|
-
def expoPackageVersion = getExpoPackageVersion()
|
|
96
|
-
if (expoPackageVersion >= versionToNumber(45, 0, 0)) {
|
|
97
|
-
srcDirs += "src/expo-45"
|
|
98
|
-
} else {
|
|
99
|
-
srcDirs += "src/expo-44"
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
100
|
releaseWithDevLauncher {
|
|
104
101
|
setRoot 'src/debug'
|
|
105
102
|
}
|
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
package="expo.modules.devlauncher">
|
|
3
3
|
|
|
4
4
|
<application>
|
|
5
|
-
<meta-data
|
|
5
|
+
<meta-data
|
|
6
|
+
android:name="expo.modules.updates.AUTO_SETUP"
|
|
7
|
+
android:value="false" />
|
|
8
|
+
|
|
9
|
+
<activity
|
|
10
|
+
android:name="expo.modules.devlauncher.launcher.DevLauncherActivity"
|
|
11
|
+
android:exported="true"
|
|
12
|
+
android:launchMode="singleTask"
|
|
13
|
+
android:theme="@style/Theme.DevLauncher.LauncherActivity">
|
|
14
|
+
<intent-filter>
|
|
15
|
+
<action android:name="android.intent.action.VIEW" />
|
|
16
|
+
|
|
17
|
+
<category android:name="android.intent.category.DEFAULT" />
|
|
18
|
+
<category android:name="android.intent.category.BROWSABLE" />
|
|
19
|
+
|
|
20
|
+
<data android:scheme="expo-dev-launcher" />
|
|
21
|
+
</intent-filter>
|
|
22
|
+
</activity>
|
|
23
|
+
|
|
24
|
+
<activity
|
|
25
|
+
android:name="expo.modules.devlauncher.launcher.errors.DevLauncherErrorActivity"
|
|
26
|
+
android:screenOrientation="portrait"
|
|
27
|
+
android:theme="@style/Theme.DevLauncher.ErrorActivity" />
|
|
6
28
|
</application>
|
|
29
|
+
|
|
30
|
+
<queries>
|
|
31
|
+
<package android:name="host.exp.exponent" />
|
|
32
|
+
</queries>
|
|
7
33
|
</manifest>
|