Skip to content

Commit

Permalink
add expo-insights
Browse files Browse the repository at this point in the history
  • Loading branch information
gianpaj committed Dec 24, 2024
1 parent be622bc commit 33ca642
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Once I spend $100 on OpenAI, then add Stripe integration for top-up credits.
- **API Communication**: tRPC
- **ORM**: Drizzle
- **UI Components**: NativeWind
- **Internationalization**: i18next (TBD)
- **Internationalization**: i18next (TBD) <https://docs.expo.dev/guides/localization/>

## Project Structure

Expand Down
27 changes: 8 additions & 19 deletions apps/expo/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
"icon": "./assets/notification_icon.png",
"color": "#ffffff",
"defaultChannel": "default",
"sounds": [
"./assets/notification_sound.wav"
],
"sounds": ["./assets/notification_sound.wav"],
"enableBackgroundRemoteNotifications": false
}
]
Expand All @@ -42,9 +40,7 @@
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"infoPlist": {
Expand All @@ -55,23 +51,16 @@
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"package": "com.onova.wakecall"
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "5cdc48bb-fe2a-4b77-8b3d-fdcd18e75399"
}
},
"expo": {
"android": {
"package": "com.onova.wakecall"
},
"extra": {
"eas": {
"projectId": "5cdc48bb-fe2a-4b77-8b3d-fdcd18e75399"
}
},
"owner": "gianpaj",
"slug": "wakecall"
}
"owner": "gianpaj"
}
2 changes: 2 additions & 0 deletions apps/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"build:dev": "eas build --profile development",
"build:preview": "eas build --profile preview",
"build:prod": "eas build --profile production",
"build:android": "eas build --profile development --platform android",
"prebuild": "expo prebuild",
"clean": "git clean -xdf .cache .expo .turbo android ios node_modules",
"dev": "expo start",
Expand Down Expand Up @@ -41,6 +42,7 @@
"expo": "^52.0.18",
"expo-constants": "~17.0.3",
"expo-dev-client": "~5.0.4",
"expo-insights": "~0.8.1",
"expo-linking": "~7.0.3",
"expo-notifications": "^0.29.11",
"expo-router": "~4.0.6",
Expand Down
15 changes: 12 additions & 3 deletions apps/expo/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"extends": ["@acme/tsconfig/base.json"],
"extends": [
"@acme/tsconfig/base.json"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["*"]
"~/*": [
"*"
]
}
},
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"]
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
]
}

0 comments on commit 33ca642

Please sign in to comment.