Getting Started
Initial Requirements
To start developing using PrivMX Endpoint Swift follow our quick start guide first
To connect it to your environment, you need:
Bridge URL
- URL address of the instance of your PrivMX BridgeSolution ID
- ID of the Solution provided by PrivMX Bridge during its initialization processUser Private Key
- the private key from the user's public-private key pair
You also need to use your own application server to manage users (and their keys) and Contexts.
Installation
Our Swift packages contain all the necessary assets and helpers to get started with PrivMX Endpoint. Select which level is the best for you. Go to Swift overview to see the descriptions of each package.
Swift Dependencies
Swift Dependencies are managed by Swift Package Manager, and published on Simplito's Github.
- Add
privmx-endpoint-swift-extra
package to your project using Xcode's built-in package management:
It should be present in Package Dependencies as well as in target's "Link Binary With Libraries" section.
- Everywhere you want to use PrivMX Package, you need to import:
Shared Libraries
Our privmx-endpoint-swift-extra
package depends on privmx-endpoint-swift
package,
which depends on a set of native libraries, which are downloaded automatically by Xcode.
They are all compiled for arm and Intel architectures for using with iOS, macOS and simulator environments.
Initial Assumptions
The initial assumptions for all the code examples below are as follows:
Connecting to PrivMX Bridge
To use any of the library's elements, you must first connect to PrivMX Bridge.
Use the API keys mentioned earlier. You can use PrivMXEndpointContainer
and its helper functions or manually instantiate PrivMXEndpoint
.
This is the most recommended approach.
Certificates should be set up accordingly to the Local Bridge Installation. More details are available here.
The active connection is kept by endpointContainer
and can be accessed with getPrivmxEndpoint()
function.
Disconnecting from PrivMX Bridge
While using PrivMXEndpointContainer
, you can run disconnect on endpointContainer
object. It ends all underlying connections.
Compilation
Compilation requires C++ interoperability turned on in the project settings, which can be found here:
Next Steps
With everything ready to go, now it's time to start using all of the Platform's capabilities.
Learn how to use: