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?
Hi Kunal Mehta ,
Maybe you can take a look about this thread on CocoaPods:
Framework inside embedded framework · Issue #3440 · CocoaPods/CocoaPods · GitHub