jngalletto
jngalletto

Reputation: 23

Static library integration in Swift Application: RSA SecurID SDK for iOS

I'm trying to integrate RSA SecurID in my existing iOS Application.

It doesn't seem to be a straightforward way of achieving this task.

Here is what i've tried so far:

The files included in the zip downloaded are the following:

enter image description here

  1. Add the files inside inc folder to my project as well as the libSecurIDLib.a .

enter image description here

enter image description here

  1. Check in build phases if the library is linked in binary .

enter image description here

  1. Check in build settings if the library path is correct .

enter image description here

  1. Clean and Build APP and keep getting these ugly and counterintuitive errors.

enter image description here

Anyone have any thoughts on why i'm having this problem.

It has anything to do with the headers?

Thanks!

Upvotes: 0

Views: 186

Answers (1)

Paulw11
Paulw11

Reputation: 114992

You haven't added the other dependencies that are listed on page 38 of the Developer's Guide.

Specifically these errors are caused because you haven't added libxml2, but you also need libsqlite3 and the System configuration framework.

Upvotes: 0

Related Questions