Prevent pod to embed ArcGIS lib into my framework

586
1
05-11-2017 02:26 PM
KunalMehta
New Contributor II

I am using cocoapods to integrate ArcGIS SDK into my framework in xcode project.

My Podfile looks like this:

workspace 'MyAppWorkspace'
xcodeproj 'Frameworks/MyFramework/MyFramework.xcodeproj'


target 'MyFramework' do
 platform :ios, '10.0'
 pod 'ArcGIS-Runtime-SDK-iOS', '~> 10.2.5'
 xcodeproj 'Frameworks/MyFramework/MyFramework.xcodeproj'
 use_frameworks!

 target 'MyFrameworkTests' do
 inherit! :search_paths
 # Pods for testing
 end
end

I am able to build MyFramework, however, the ArcGIS lib seems to be embedded inside MyFramework. 

Is there any way I can avoid this embedding?

0 Kudos
1 Reply
YueWu1
by Esri Regular Contributor
Esri Regular Contributor

Hi  Kunal Mehta ,

Maybe you can take a look about this thread on CocoaPods:

Framework inside embedded framework · Issue #3440 · CocoaPods/CocoaPods · GitHub 

0 Kudos