i have been developing application cocoapods dependency manager not able specify realmswift "private" pod 1 of app's module/target (cocoa touch framework).
with every try changing podfile getting following message xcode @ build time:
ld: framework not found realm architecture arm64
clang: error: linker command failed exit code 1 (use -v see invocation)
by now, how pod file looks (right abstract_target empty, @ future filled other pods):
source 'https://github.com/cocoapods/specs.git' platform :ios, '9.0' use_frameworks! abstract_target 'pod-defaults' target 'myapp' pod 'keychainaccess', '~> 2.3' end target 'api' pod 'alamofire', '~> 3.4' pod 'taskqueue', '~> 0.9' end target 'data' pod 'realmswift', '~> 1.0' end end
when moving realmswift pod root abstract_target not getting error, not desired structure.
someone can me issue?
thank you.
Comments
Post a Comment