Asista SDK for IOS
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
- iOS 8.0+
- Xcode 10.0+
- Swift 4.2+
Installing the Asista SDK
AsistaCore is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'AsistaCore'
pod 'AsistaUI'
Getting Started
SDK Configuration
To begin making calls to the Asista API, you need to register an application on the Asista Developer Site and get credentials for your app.
Then, configure your Xcode with information for the Asista SDK. Locate the Info.plist file for your application. Right-click this file and select Open As > Source Code
Add the following code snippet, replacing the placeholders within the square brackets ([]
) with your app’s information from the developer dashboard. (Note: Do not include the square brackets)
<key>Asista</key>
<dict>
<key>appKey</key>
<string>[appKey]</string>
<key>appSecret</key>
<string>[appSecret]</string>
<key>tenantUrl</key>
<string>[https://example.asista.com]</string>
</dict>
Author
vaisakhcherrylabs, [email protected]
Contributing
We
Please open any pull requests against the develop
branch.
License
AsistaCore is available under the MIT license. See the LICENSE file for more info.