Skip to content

Commit

Permalink
add expo-facebook to bare-expo (#6958)
Browse files Browse the repository at this point in the history
* Add expo-facebook to bare-expo

* Add facebook test shim to test-suite

* Update bare-expo pods
  • Loading branch information
EvanBacon committed Feb 13, 2020
1 parent 624a9c0 commit a73d59d
Show file tree
Hide file tree
Showing 517 changed files with 41,695 additions and 1,218 deletions.
7 changes: 7 additions & 0 deletions apps/bare-expo/android/app/src/main/AndroidManifest.xml
Expand Up @@ -33,6 +33,13 @@
android:allowBackup="false"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true">

<!-- [Custom] Expo Facebook -->
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id" />
<!-- [Custom] End Expo Facebook -->

<activity
android:launchMode="singleTask"
android:name=".MainActivity"
Expand Down
Expand Up @@ -24,6 +24,7 @@ public List<Package> getPackageList() {
new expo.modules.device.DevicePackage(),
new expo.modules.documentpicker.DocumentPickerPackage(),
new expo.modules.errorrecovery.ErrorRecoveryPackage(),
new expo.modules.facebook.FacebookPackage(),
new expo.modules.filesystem.FileSystemPackage(),
new expo.modules.font.FontLoaderPackage(),
new expo.modules.gl.GLPackage(),
Expand Down
1 change: 1 addition & 0 deletions apps/bare-expo/android/app/src/main/res/values/strings.xml
@@ -1,3 +1,4 @@
<resources>
<string name="app_name">bare-expo</string>
<string name="facebook_app_id">629712900716487</string>
</resources>
42 changes: 3 additions & 39 deletions apps/bare-expo/ios/BareExpo.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions apps/bare-expo/ios/Podfile.lock
Expand Up @@ -58,6 +58,11 @@ PODS:
- UMFileSystemInterface
- EXErrorRecovery (1.0.0):
- UMCore
- EXFacebook (8.0.0):
- FBSDKCoreKit (~> 5.8.0)
- FBSDKLoginKit (~> 5.8.0)
- UMConstantsInterface
- UMCore
- EXFileSystem (8.0.0):
- UMCore
- UMFileSystemInterface
Expand Down Expand Up @@ -153,6 +158,16 @@ PODS:
- React-Core (= 0.61.4)
- React-jsi (= 0.61.4)
- ReactCommon/turbomodule/core (= 0.61.4)
- FBSDKCoreKit (5.8.0):
- FBSDKCoreKit/Basics (= 5.8.0)
- FBSDKCoreKit/Core (= 5.8.0)
- FBSDKCoreKit/Basics (5.8.0)
- FBSDKCoreKit/Core (5.8.0):
- FBSDKCoreKit/Basics
- FBSDKLoginKit (5.8.0):
- FBSDKLoginKit/Login (= 5.8.0)
- FBSDKLoginKit/Login (5.8.0):
- FBSDKCoreKit (~> 5.0)
- Folly (2018.10.22.00):
- boost-for-react-native
- DoubleConversion
Expand Down Expand Up @@ -423,6 +438,7 @@ DEPENDENCIES:
- EXDevice (from `../../../packages/expo-device/ios`)
- EXDocumentPicker (from `../../../packages/expo-document-picker/ios`)
- EXErrorRecovery (from `../../../packages/expo-error-recovery/ios`)
- EXFacebook (from `../../../packages/expo-facebook/ios`)
- EXFileSystem (from `../../../packages/expo-file-system/ios`)
- EXFont (from `../../../packages/expo-font/ios`)
- EXGL (from `../../../packages/expo-gl/ios`)
Expand Down Expand Up @@ -503,6 +519,8 @@ SPEC REPOS:
- Analytics
- AppAuth
- boost-for-react-native
- FBSDKCoreKit
- FBSDKLoginKit
- GoogleSignIn
- GTMAppAuth
- GTMSessionFetcher
Expand Down Expand Up @@ -565,6 +583,9 @@ EXTERNAL SOURCES:
EXErrorRecovery:
:path: !ruby/object:Pathname
path: "../../../packages/expo-error-recovery/ios"
EXFacebook:
:path: !ruby/object:Pathname
path: "../../../packages/expo-facebook/ios"
EXFileSystem:
:path: !ruby/object:Pathname
path: "../../../packages/expo-file-system/ios"
Expand Down Expand Up @@ -772,6 +793,7 @@ SPEC CHECKSUMS:
EXDevice: 106e1250d41a41f7f32f7ec3678aaf755733e8cc
EXDocumentPicker: 25d232d804087bd6fe88a74d7e582b295e5e69dd
EXErrorRecovery: d36db99ec6a3808f313f01b0890eb443796dd1c2
EXFacebook: c10f77ea97b3003c29b4f0a49942acc1ba8330b5
EXFileSystem: 6e0d9bb6cc4ea404dbb8f583c1a8a2dcdf4b83b6
EXFont: 6187b5ab46ee578d5f8e7f2ea092752e78772235
EXGL: 3add8ba2c89377285f57cda493d4bc50939b5300
Expand Down Expand Up @@ -805,6 +827,8 @@ SPEC CHECKSUMS:
EXWebBrowser: db32607359fb7b55b7b7b91df32dd3d8355bb3b7
FBLazyVector: feb35a6b7f7b50f367be07f34012f34a79282fa3
FBReactNativeSpec: 51477b84b1bf7ab6f9ef307c24e3dd675391be44
FBSDKCoreKit: e7dcac0aabcfb09d0166998edd95fe3b05a0ce5d
FBSDKLoginKit: 1b0cf04df0370b37404213157b060d6666ede814
Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51
glog: 1f3da668190260b06b429bb211bfbee5cd790c28
GoogleSignIn: 7137d297ddc022a7e0aa4619c86d72c909fa7213
Expand Down
41 changes: 35 additions & 6 deletions apps/bare-expo/ios/Pods/.project_cache/installation_cache.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions apps/bare-expo/ios/Pods/.project_cache/metadata_cache.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a73d59d

Please sign in to comment.