last commit before trying out opencode on repo

This commit is contained in:
2026-01-11 10:17:30 -05:00
parent 843b264c61
commit 91682bd887
85 changed files with 1589 additions and 1196 deletions

View File

@@ -1,32 +1,32 @@
import type { ConfigContext, ExpoConfig } from "expo/config";
import type { ConfigContext, ExpoConfig } from 'expo/config';
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: "expo",
slug: "expo",
scheme: "expo",
version: "0.1.0",
orientation: "portrait",
icon: "./assets/icon-light.png",
userInterfaceStyle: "automatic",
name: 'expo',
slug: 'expo',
scheme: 'expo',
version: '0.1.0',
orientation: 'portrait',
icon: './assets/icon-light.png',
userInterfaceStyle: 'automatic',
updates: {
fallbackToCacheTimeout: 0,
},
newArchEnabled: true,
assetBundlePatterns: ["**/*"],
assetBundlePatterns: ['**/*'],
ios: {
bundleIdentifier: "your.bundle.identifier",
bundleIdentifier: 'your.bundle.identifier',
supportsTablet: true,
icon: {
light: "./assets/icon-light.png",
dark: "./assets/icon-dark.png",
light: './assets/icon-light.png',
dark: './assets/icon-dark.png',
},
},
android: {
package: "your.bundle.identifier",
package: 'your.bundle.identifier',
adaptiveIcon: {
foregroundImage: "./assets/icon-light.png",
backgroundColor: "#1F104A",
foregroundImage: './assets/icon-light.png',
backgroundColor: '#1F104A',
},
edgeToEdgeEnabled: true,
},
@@ -42,17 +42,17 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
reactCompiler: true,
},
plugins: [
"expo-router",
"expo-secure-store",
"expo-web-browser",
'expo-router',
'expo-secure-store',
'expo-web-browser',
[
"expo-splash-screen",
'expo-splash-screen',
{
backgroundColor: "#E4E4E7",
image: "./assets/icon-light.png",
backgroundColor: '#E4E4E7',
image: './assets/icon-light.png',
dark: {
backgroundColor: "#18181B",
image: "./assets/icon-dark.png",
backgroundColor: '#18181B',
image: './assets/icon-dark.png',
},
},
],