expo-template-tabs 55.0.0-canary-20260114-d8e19f5 → 55.0.0-canary-20260119-17896bf

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/app.json CHANGED
@@ -7,6 +7,7 @@
7
7
  "icon": "./assets/images/icon.png",
8
8
  "scheme": "helloworld",
9
9
  "userInterfaceStyle": "automatic",
10
+ "newArchEnabled": true,
10
11
  "splash": {
11
12
  "image": "./assets/images/splash-icon.png",
12
13
  "resizeMode": "contain",
@@ -17,10 +18,8 @@
17
18
  },
18
19
  "android": {
19
20
  "adaptiveIcon": {
20
- "backgroundColor": "#E6F4FE",
21
- "foregroundImage": "./assets/images/android-icon-foreground.png",
22
- "backgroundImage": "./assets/images/android-icon-background.png",
23
- "monochromeImage": "./assets/images/android-icon-monochrome.png"
21
+ "foregroundImage": "./assets/images/adaptive-icon.png",
22
+ "backgroundColor": "#ffffff"
24
23
  },
25
24
  "edgeToEdgeEnabled": true,
26
25
  "predictiveBackGestureEnabled": false
Binary file
Binary file
Binary file
@@ -10,6 +10,7 @@ export function ExternalLink(
10
10
  <Link
11
11
  target="_blank"
12
12
  {...props}
13
+ // @ts-expect-error: External URLs are not typed.
13
14
  href={props.href}
14
15
  onPress={(e) => {
15
16
  if (Platform.OS !== 'web') {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "expo-router/entry",
4
4
  "description": "The Tab Navigation project template includes several example screens.",
5
5
  "license": "0BSD",
6
- "version": "55.0.0-canary-20260114-d8e19f5",
6
+ "version": "55.0.0-canary-20260119-17896bf",
7
7
  "scripts": {
8
8
  "start": "expo start",
9
9
  "android": "expo start --android",
@@ -11,28 +11,28 @@
11
11
  "web": "expo start --web"
12
12
  },
13
13
  "dependencies": {
14
- "@expo/vector-icons": "^15.0.2",
15
- "@react-navigation/native": "^7.1.21",
16
- "expo": "55.0.0-canary-20260114-d8e19f5",
17
- "expo-constants": "18.1.0-canary-20260114-d8e19f5",
18
- "expo-font": "14.1.0-canary-20260114-d8e19f5",
19
- "expo-linking": "8.0.12-canary-20260114-d8e19f5",
20
- "expo-router": "7.0.0-canary-20260114-d8e19f5",
21
- "expo-splash-screen": "31.0.14-canary-20260114-d8e19f5",
22
- "expo-status-bar": "3.0.10-canary-20260114-d8e19f5",
23
- "expo-web-browser": "15.0.11-canary-20260114-d8e19f5",
24
- "react": "19.2.0",
25
- "react-dom": "19.2.0",
26
- "react-native": "0.83.1",
27
- "react-native-worklets": "0.7.1",
28
- "react-native-reanimated": "~4.2.1",
29
- "react-native-safe-area-context": "~5.6.2",
30
- "react-native-screens": "~4.19.0",
14
+ "@expo/vector-icons": "^15.0.3",
15
+ "@react-navigation/native": "^7.1.8",
16
+ "expo": "55.0.0-canary-20260119-17896bf",
17
+ "expo-constants": "18.0.14-canary-20260119-17896bf",
18
+ "expo-font": "14.0.11-canary-20260119-17896bf",
19
+ "expo-linking": "8.0.12-canary-20260119-17896bf",
20
+ "expo-router": "6.0.22-canary-20260119-17896bf",
21
+ "expo-splash-screen": "31.0.14-canary-20260119-17896bf",
22
+ "expo-status-bar": "3.0.10-canary-20260119-17896bf",
23
+ "expo-web-browser": "15.0.11-canary-20260119-17896bf",
24
+ "react": "19.1.0",
25
+ "react-dom": "19.1.0",
26
+ "react-native": "0.81.5",
27
+ "react-native-worklets": "0.5.1",
28
+ "react-native-reanimated": "~4.1.1",
29
+ "react-native-safe-area-context": "~5.6.0",
30
+ "react-native-screens": "~4.16.0",
31
31
  "react-native-web": "~0.21.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@types/react": "~19.1.1",
35
- "react-test-renderer": "19.2.0",
34
+ "@types/react": "~19.1.0",
35
+ "react-test-renderer": "19.1.0",
36
36
  "typescript": "~5.9.2"
37
37
  }
38
38
  }