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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sudo rm -rf ./audio_chunks/ ./mongo_data/ ./qdrant_data/

### Mobile App Development
```bash
cd friend-lite
cd app

# Start Expo development server
npm start
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Its a little complicated to turn that into PCM, which most Apps use.

## Core Components

### 📱 Mobile App (`friend-lite/`)
### 📱 Mobile App (`app/`)
- **React Native app** for connecting to OMI devices via Bluetooth
- Streams audio in OPUS format to selected backend
- Cross-platform (iOS/Android) support
Expand Down Expand Up @@ -181,7 +181,7 @@ Both backends and ASR services use the **Wyoming protocol** for standardized com

## For Beginners
1. Start with **Simple Backend** to understand the basics
2. Use **friend-lite mobile app** to connect your OMI device
2. Use **mobile app** to connect your OMI device
3. Examine saved audio chunks in `./audio_chunks/`

## For Production Use
Expand Down
4 changes: 2 additions & 2 deletions app/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## iOS Installation

### Method 1: Using Xcode (Development)
1. Navigate to the `friend-lite` folder
1. Navigate to the `app` folder
2. Run prebuild command:
```bash
npx expo prebuild --clean
Expand All @@ -15,7 +15,7 @@
6. Build and run the app from Xcode

### Method 2: Using Expo CLI (Recommended)
1. Navigate to the `friend-lite` folder
1. Navigate to the `app` folder
2. Clean and prebuild the project:
```bash
npx expo prebuild --clean
Expand Down
4 changes: 2 additions & 2 deletions app/app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"expo": {
"name": "friend-lite",
"slug": "friend-lite",
"name": "friend-lite-app",
"slug": "friend-lite-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "friend-lite",
"name": "friend-lite-app",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
Expand Down