Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions app/app.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"expo": {
"name": "friend-lite-app",
"slug": "friend-lite-app",
"name": "chronicle",
"slug": "chronicle",
"version": "1.0.0",
"scheme": "chronicle",
"orientation": "portrait",
"icon": "./assets/icon.png",
"entryPoint": "./app/index.tsx",
"userInterfaceStyle": "light",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
Expand All @@ -17,17 +17,21 @@
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.cupbearer5517.friendlite",
"bundleIdentifier": "com.cupbearer5517.chronicle",
"infoPlist": {
"NSMicrophoneUsageDescription": "Friend Lite needs access to your microphone to stream audio to the backend for processing."
"NSMicrophoneUsageDescription": "Chronicle needs access to your microphone to stream audio to the backend for processing.",
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true,
"NSAllowsLocalNetworking": true
}
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.cupbearer5517.friendlite",
"package": "com.cupbearer5517.chronicle",
"permissions": [
"android.permission.BLUETOOTH",
"android.permission.BLUETOOTH_ADMIN",
Expand Down Expand Up @@ -91,7 +95,8 @@
]
}
}
]
],
"./plugins/with-ats"
],
"extra": {
"eas": {
Expand Down
20 changes: 19 additions & 1 deletion app/app/_layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
import { Stack } from "expo-router";
import { useTheme } from "@/theme";
import { ConnectionLogProvider } from "@/contexts/ConnectionLogContext";

export default function RootLayout() {
return <Stack />;
const { colors, isDark } = useTheme();

return (
<ConnectionLogProvider>
<Stack
screenOptions={{
headerStyle: { backgroundColor: colors.card },
headerTintColor: colors.text,
headerTitleStyle: { fontWeight: '600' },
contentStyle: { backgroundColor: colors.background },
}}
>
<Stack.Screen name="index" options={{ title: 'Chronicle', headerShown: false }} />
<Stack.Screen name="diagnostics" options={{ title: 'Diagnostics', presentation: 'card' }} />
</Stack>
</ConnectionLogProvider>
);
}
319 changes: 0 additions & 319 deletions app/app/components/BackendStatus.tsx

This file was deleted.

Loading