Bumping the dependencies, updating readme, adding .gitignore.

This commit is contained in:
Filipi Fuchter
2025-05-05 18:43:04 -03:00
parent 915c284420
commit d5ab3251f0
7 changed files with 5002 additions and 11115 deletions

View File

@@ -0,0 +1,5 @@
ios
android
node_modules
.expo
.env

View File

@@ -0,0 +1 @@
22.14

View File

@@ -30,7 +30,7 @@ You will need to have installed locally on your computer:
nvm i
# Install dependencies
npm i
yarn install
# Before a native app can be compiled, the native source code must be generated.
npx expo prebuild

File diff suppressed because it is too large Load Diff

View File

@@ -11,30 +11,30 @@
"dependencies": {
"@config-plugins/react-native-webrtc": "^10.0.0",
"@daily-co/config-plugin-rn-daily-js": "0.0.7",
"@daily-co/react-native-daily-js": "^0.73.0",
"@daily-co/react-native-daily-js": "^0.76.0",
"@daily-co/react-native-webrtc": "^118.0.3-daily.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-async-storage/async-storage": "1.24.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"expo": "^52.0.20",
"expo-build-properties": "~0.13.1",
"expo-dev-client": "~5.0.6",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"react": "18.3.1",
"react-native": "0.76.5",
"expo": "^53.0.7",
"expo-build-properties": "~0.14.6",
"expo-dev-client": "~5.1.8",
"expo-splash-screen": "~0.30.8",
"expo-status-bar": "~2.2.3",
"react": "19.1.0",
"react-native": "0.79.2",
"react-native-background-timer": "^2.4.1",
"react-native-gesture-handler": "^2.21.2",
"react-native-gesture-handler": "^2.25.0",
"react-native-get-random-values": "^1.11.0",
"@pipecat-ai/react-native-daily-transport": "^0.3.2",
"react-native-safe-area-context": "^4.14.1",
"react-native-screens": "^4.4.0",
"react-native-toast-message": "^2.2.1"
"react-native-safe-area-context": "^5.4.0",
"react-native-screens": "^4.10.0",
"react-native-toast-message": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/core": "^7.27.1",
"@types/react-native": "^0.73.0",
"typescript": "~5.7.2"
"typescript": "~5.8.3"
},
"private": true,
"resolutions": {

View File

@@ -10,7 +10,7 @@ export interface SettingsManager {
const defaultSettings: SettingsManager = {
enableCam: false,
enableMic: true,
backendURL: process.env.EXPO_PUBLIC_BASE_URL || "https://api.daily.co/v1/bots",
backendURL: process.env.EXPO_PUBLIC_BASE_URL || "",
};
export class SettingsManager {

File diff suppressed because it is too large Load Diff