I am creating a swift project in which I am implementing Microsoft Azure B2C sdk. To do so I am writing following line in my pod
pod 'ADALiOS', :git => 'https://github.com/AzureAD/azure-activedirectory-library-for-objc', :branch => 'convergence-dev'
and this has successfullt installed ADALiOS in my pod. After that I copied samplesUserLoginViewController and samplesUseViewController views in my code. After that I copied ADAL_iPad_Storyboard.storyboard and ADAL_iPhone_Storyboard.storyboard in to project too.
Code inside my bridging header file is
#import "NSDictionary+UrlEncoding.h"
#import "samplesUserLoginViewController.h"
#import "samplesUseViewController.h"
After all this I build my project and got below error clang: error: no such file or directory: 'ADALiOS'
Thanks in advance!!!