feat: add expo-build-properties plugin to set minSdkVersion 26

Using expo-build-properties plugin for proper minSdk configuration.
Required for react-native-vad which needs Android O (API 26) or higher.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
Mohamed Boudra
2025-10-21 22:19:12 +02:00
parent 931a38634d
commit 8235d8d1b1
39 changed files with 7497 additions and 83 deletions

View File

@@ -16,7 +16,9 @@
"typecheck": "npm run typecheck --workspaces --if-present",
"start": "npm run start --workspace=@voice-dev/web",
"start:agent": "npm run start --workspace=@voice-dev/agent",
"start:mcp": "npm run start --workspace=@voice-dev/mcp-server"
"start:mcp": "npm run start --workspace=@voice-dev/mcp-server",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"typescript": "^5.9.3"
@@ -33,6 +35,10 @@
"author": "moboudra",
"license": "MIT",
"dependencies": {
"@tailwindcss/oxide": "^4.1.14"
"@tailwindcss/oxide": "^4.1.14",
"expo-build-properties": "^1.0.9",
"expo": "~54.0.17",
"react": "19.1.0",
"react-native": "0.81.4"
}
}