Skip to content

Commit

Permalink
* fixed: #26 FBCore missing FBAEMKit dependency
Browse files Browse the repository at this point in the history
also dependencies reviewed
  • Loading branch information
dkimitsa committed Sep 23, 2023
1 parent 263c58b commit 748d83c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 23 deletions.
2 changes: 1 addition & 1 deletion facebook/ios-aem/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependencies>
<dependency>
<groupId>io.github.dkimitsa.robovm</groupId>
<artifactId>robopods-facebook-core-ios</artifactId>
<artifactId>robopods-facebook-core-basics-ios</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<config>
<frameworks>
<framework>FBAEMKit</framework>
</frameworks>
<exportedSymbols>
<!-- required when static version of framework is used to keep symbols from being dropped by linker as unused -->
<symbol>FBSDK**</symbol>
</exportedSymbols>
</config>
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,13 @@
</libs>
<frameworks>
<framework>FBAudienceNetwork</framework>
<framework>AVFoundation</framework>

<framework>AdSupport</framework>
<framework>AudioToolbox</framework>
<framework>CFNetwork</framework>
<framework>CoreGraphics</framework>
<framework>CoreMedia</framework>
<framework>CoreMotion</framework>
<framework>CoreVideo</framework>
<framework>CoreVideo</framework>
<framework>LocalAuthentication</framework>
<framework>OpenGLES</framework>
<framework>Photos</framework>
<framework>QuartzCore</framework>
<framework>SafariServices</framework>
<framework>Security</framework>
<framework>StoreKit</framework>
<framework>SystemConfiguration</framework>
<framework>VideoToolbox</framework>
<framework>WebKit</framework>
</frameworks>
<exportedSymbols>
<!-- required when static version of framework is used to keep symbols from being dropped by linker as unused -->
<symbol>FB**</symbol>
</exportedSymbols>
</config>
4 changes: 3 additions & 1 deletion facebook/ios-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ It is available for a download as `FacebookSDK_Dynamic.framework.zip` and allows
```

### Frameworks required for this pod:
* FBSDKCoreKit.framework
* FBSDKCoreKit.xcframework
* FBSDKCoreKit_Basics.xcframework
* FBAEMKit.xcframework

### to use this pod configure your `robovm.xml`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@
</libs>
<frameworks>
<framework>FBSDKCoreKit</framework>
<framework>FBAEMKit</framework> <!-- as pointed by FBSDKCoreKit.podspec -->

<framework>Accelerate</framework>
<framework>WebKit</framework>
<framework>StoreKit</framework>
<framework>CoreGraphics</framework>
<framework>UIKit</framework>
<framework>SafariServices</framework>
</frameworks>
<exportedSymbols>
<!-- required when static version of framework is used to keep symbols from being dropped by linker as unused -->
Expand Down

0 comments on commit 748d83c

Please sign in to comment.