This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Description
I want to integrate the 1Password extension to my Swift application. I am using CocoaPods to integrate your extension into my application. Concluding I needed to use an Objective-C bridging header.
I had big troubles integrating the extension using this approach, because I was not able to import the required header files using the intuitive command #import <1PasswordExtension/OnePasswordExtension.h, because xCode was unable to find the header file.
The configuration provided by CocoaPods the dynamic library install name is _1PasswordExtension, concluding I need to import the extension using the very non-intuitive #import <_1PasswordExtension/OnePasswordExtension.h command.
It would be great to either include a notice about this non-intuitive behaviour or change the name within the next release.