diff --git a/apps/app/app.config.ts b/apps/app/app.config.ts
index 397fc49d..27d0616d 100644
--- a/apps/app/app.config.ts
+++ b/apps/app/app.config.ts
@@ -28,9 +28,6 @@ const config: ExpoConfig = {
resizeMode: "contain",
backgroundColor: "#f43f5e",
},
- developmentClient: {
- silentLaunch: true,
- },
updates: {
enabled: true,
url: `https://u.expo.dev/${projectId}`,
@@ -50,24 +47,10 @@ const config: ExpoConfig = {
],
appStoreUrl: "https://apps.apple.com/us/app/share-my-stack/id6450111644",
infoPlist: {
- NSLocationWhenInUseUsageDescription:
- "Share My Stack uses your location to help you connect with other users nearby and to show you relevant local content.", // Note: The app doesn't use location information, but this has to be included because the OneSignal plugin includes location access logic
NSCameraUsageDescription:
"Share My Stack app requires access to your photo library to save generated graphics, enabling you to view and share them at your convenience.",
- LSApplicationQueriesSchemes: [
- "itms",
- "itms-apps",
- "whatsapp",
- "instagram",
- "instagram-stories",
- "fb",
- "facebook-stories",
- ],
},
},
- experiments: {
- tsconfigPaths: true,
- },
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
@@ -85,12 +68,6 @@ const config: ExpoConfig = {
},
},
plugins: [
- [
- "expo-router",
- {
- origin: "https://sharemystack.com",
- },
- ],
"expo-apple-authentication",
[
"expo-build-properties",
diff --git a/apps/app/package.json b/apps/app/package.json
index e2e19f25..9ccf5e7b 100644
--- a/apps/app/package.json
+++ b/apps/app/package.json
@@ -7,7 +7,7 @@
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web --clear",
- "doc": "expo install --check",
+ "doc": "bun x expo-doctor@latest",
"prebuild": "expo prebuild --platform android --clean",
"build:simulator": "eas build --profile simulator --platform ios --local",
"build:simulator:android": "eas build --profile simulator --platform android --local",
diff --git a/apps/app/src/app/(tabs)/_layout.tsx b/apps/app/src/app/(tabs)/_layout.tsx
index d11c5daf..6abbbe73 100644
--- a/apps/app/src/app/(tabs)/_layout.tsx
+++ b/apps/app/src/app/(tabs)/_layout.tsx
@@ -2,7 +2,7 @@ import {
Home,
Layers,
Settings,
- UserCircle,
+ UserRound,
Wrench,
} from "@tamagui/lucide-icons";
import { Tabs } from "expo-router";
@@ -23,7 +23,7 @@ export default function Layout() {
options={{
title: "Profile",
headerShown: false,
- tabBarIcon: ({ color }) => ,
+ tabBarIcon: ({ color }) => ,
}}
/>