I'm developing a Framework for iOS where I need Alamofire but when I'm compiling my framework I got the following error:
Module Alamofire has no member named request
I also need Dollar in my Framework so here is my Podfile:
source 'https://github.com/CocoaPods/Specs.git'
link_with ['VTStarterFramework', 'VTStarterFrameworkTests']
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
pod 'Dollar'
I also have set in Build settings the Build Active Architecture Only to
Debug = YES
Release = NO
I would appreciate any help.
Thanks in advance.