* docs(react-native): create the basic expo project * docs(react-native): cross-platform Apple social sign-in * docs(react-native): cross-platform Google social sign-in * docs(react-native): fix typos * docs(react-native): remove wrong entry in the `Connection` component * Correct typos * Prettier * Draft * Draft * docs(react-native): use kebab-case file naming convention in Expo guide - use kebab-case file naming convention in Expo guide - add trailing semicolon to align with the standard Expo template conventions * docs(react-native): use kebab-case file naming convention in Expo social auth example * docs(react-native): update the packages of the Expo social auth example * Fix * Draft * Changes * Correct log message --------- Co-authored-by: Chris Chinchilla <chris.ward@supabase.io> Co-authored-by: Chris Chinchilla <chris@chrischinchilla.com>
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"expo": {
|
|
"name": "expo-social-auth",
|
|
"slug": "expo-social-auth",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/icon.png",
|
|
"scheme": "exposocialauth",
|
|
"userInterfaceStyle": "automatic",
|
|
"newArchEnabled": true,
|
|
"ios": {
|
|
"bundleIdentifier": "com.anonymous.exposocialauth",
|
|
"supportsTablet": true,
|
|
"usesAppleSignIn": true
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"backgroundColor": "#ffffff",
|
|
"foregroundImage": "./assets/images/adaptive-icon.png"
|
|
},
|
|
"edgeToEdgeEnabled": true,
|
|
"package": "com.anonymous.exposocialauth"
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"favicon": "./assets/images/favicon.png",
|
|
"output": "single"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
[
|
|
"expo-splash-screen",
|
|
{
|
|
"backgroundColor": "#ffffff",
|
|
"image": "./assets/images/splash-icon.png",
|
|
"imageWidth": 200,
|
|
"resizeMode": "contain"
|
|
}
|
|
],
|
|
"expo-secure-store",
|
|
"expo-apple-authentication",
|
|
[
|
|
"expo-web-browser",
|
|
{
|
|
"experimentalLauncherActivity": false
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"reactCompiler": true
|
|
}
|
|
}
|
|
} |