For example I need to import OneDrive SDK.
But I can't use cocoapods due to some reasons.
How to import this library as source files instead? The problem I have is all the import
macro are surrounded with <>
. For example this doesn't work:
#import <ADALiOS/ADUserInformation.h>
And this works:
#import "ADUserInformation.h"
But if it is possible to import them without of editing the source code?