Skip to content

Commit

Permalink
chore: add social connection buttons (#6)
Browse files Browse the repository at this point in the history
Adds farcaster and google connect buttons.
  • Loading branch information
guiMendel committed Jul 31, 2024
2 parents 6ae1220 + 377faac commit 2a11da0
Show file tree
Hide file tree
Showing 7 changed files with 1,491 additions and 248 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ yarn-error.*

# typescript
*.tsbuildinfo

.env
/android
/ios
16 changes: 11 additions & 5 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"expo": {
"name": "react-native-expo",
"slug": "react-native-expo",
"scheme": "reactnativeexpo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
Expand All @@ -11,20 +12,25 @@
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
"supportsTablet": true,
"bundleIdentifier": "com.dynamicinfra.reactnativeexpo"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"package": "com.dynamicinfra.reactnativeexpo"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "165d3eb3-5b25-41a1-a3b2-8cf02e73f818"
}
}
}
}
18 changes: 18 additions & 0 deletions eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cli": {
"version": ">= 10.0.3"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}
Loading

0 comments on commit 2a11da0

Please sign in to comment.