expo-dev-launcher 0.10.3 → 0.10.6

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,10 +10,25 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.10.6 — 2022-06-06
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 0.10.5 — 2022-04-26
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
21
+ ## 0.10.4 — 2022-02-07
22
+
23
+ ### 🐛 Bug fixes
24
+
25
+ - Fix opening published projects on Android. ([#16157](https://github.com/expo/expo/pull/16157) by [@esamelson](https://github.com/esamelson))
26
+
13
27
  ## 0.10.3 — 2022-02-01
14
28
 
15
29
  ### 🐛 Bug fixes
16
30
 
31
+ - Added `android:exported="true"` to the activity, cause on Android 12 and higher it needs to [explicity declared](https://developer.android.com/about/versions/12/behavior-changes-12#exported). ([#16367](https://github.com/expo/expo/pull/16367) by [@wbroek](https://github.com/wbroek))
17
32
  - Fix build errors on React Native 0.66 caused by `okio` and `okhttp`. ([#15632](https://github.com/expo/expo/pull/15632) by [@kudo](https://github.com/kudo))
18
33
  - Fix `Plugin with id 'maven' not found` build error from Android Gradle 7. ([#16080](https://github.com/expo/expo/pull/16080) by [@kudo](https://github.com/kudo))
19
34
  - Fix regression in deep linking configuration. ([#16125](https://github.com/expo/expo/pull/16125) by [@ajsmth](https://github.com/ajsmth))
@@ -25,7 +25,7 @@ android {
25
25
  minSdkVersion safeExtGet('minSdkVersion', 21)
26
26
  targetSdkVersion safeExtGet('targetSdkVersion', 30)
27
27
  versionCode 9
28
- versionName "0.10.3"
28
+ versionName "0.10.6"
29
29
  }
30
30
 
31
31
  lintOptions {
@@ -0,0 +1,7 @@
1
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
+ package="expo.modules.devlauncher">
3
+
4
+ <application>
5
+ <meta-data android:name="expo.modules.updates.AUTO_SETUP" android:value="false"/>
6
+ </application>
7
+ </manifest>
@@ -6,7 +6,8 @@
6
6
  android:name="expo.modules.devlauncher.launcher.DevLauncherActivity"
7
7
  android:screenOrientation="portrait"
8
8
  android:theme="@style/Theme.DevLauncher.LauncherActivity"
9
- android:launchMode="singleTask"
9
+ android:launchMode="singleTask"
10
+ android:exported="true"
10
11
  >
11
12
  <intent-filter>
12
13
  <action android:name="android.intent.action.VIEW"/>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "0.10.3",
4
+ "version": "0.10.6",
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",
@@ -32,7 +32,7 @@
32
32
  "@expo/config-plugins": "^4.0.14",
33
33
  "resolve-from": "^5.0.0",
34
34
  "semver": "^7.3.5",
35
- "expo-dev-menu": "0.9.3"
35
+ "expo-dev-menu": "0.9.4"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@react-navigation/bottom-tabs": "^6.0.9",
@@ -62,5 +62,5 @@
62
62
  "./setupTests.ts"
63
63
  ]
64
64
  },
65
- "gitHead": "c689b0c8a14445397ca5f9febdd99b5949e03f9b"
65
+ "gitHead": "ea143b4e03e72d777beab6e083ea0c21f4a52df8"
66
66
  }