Client Setup - Part 1

Welcome

The official reporitory is: github.com/4th-ATechnologies/ZeroDark.cloud

The repository comes with a few sample apps. It's easy to test drive these sample apps, so you can test out the framework and its features.

Install the framework

To start using ZeroDarkCloud in your own application, your first step is to install the framework using CocoaPods.

CocoaPods

To install with CocoaPods, just add the following to your Podfile:

pod 'ZeroDarkCloud/Swift'

And then run pod install as ususal.

Test Installation

Test that the framework was installed properly by importing it within your code, and ensuring you don't get any compiler errors. Just add the following import somewhere (e.g. to your AppDelegate):

// Swift import
import ZeroDarkCloud
// Objective-C import
#import <ZeroDarkCloud/ZeroDarkCloud.h>

Next Step

Now you're ready for part 2: Initialize the framework