I'm trying to integrate the UniPay iOS SDK with my iOS app. I've imported the required IDTech.framework as instructed, added the Bridging Header File (set the Swift Compiler Build Settings to it already). I am now trying to import the needed IDTech.h header file in the Bridging Header with:
#ifndef Swift_Bridging_Header_h
#define Swift_Bridging_Header_h
#import <IDTech/IDTech.h>
#endif
however I get 2 issues from XCode 9.3.1: -Swift Compiler Error:
'IDTech/IDTech.h' file not found (CardSwipe-Bridging-Header.h) and
Failed to emit precompiled header '/User/..../Library/Developer/XCode/DerivedData/.....pch' fir bridging header
What am I doing wrong? Thanks in advance!