acquireio / CocoaPods

Your complete customer communication platform - and not just live chat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AcquireIO

CocoaPods Languages CocoaPods Apache License CocoaPods

Customer Support

đź‘‹ This is a repository of Cocoapods which are ad-hoc/beta releases of the AcquireIO frontend bundle iOS SDK.

Installation

AcquireIO for iOS supports iOS 8, iOS 9, iOS 10 and iOS 11.

Building with Xcode 9 is required, which adds support for iPhone X and iOS 11.

CocoaPods

Add Private pod to your Podfile

Add the AcquireIO pod into your Podfile and run pod install.

target :YourTargetName do
  pod 'AcquireIO'
end

Note: Since iOS 10, it's mandatory to add before you access privacy-sensitive data like Camera, Microphone, and so on, you must ask for the authorization, or your app will crash when you access them.

Open the file in your project named info.plist, right click it, opening as Source Code, paste this code below to it. Or you can open info.plist as Property List by default, click the add button, Xcode will give you the suggest completions while typing Privacy - with the help of keyboard and

Remember to write your description why you ask for this authorization, between <string> and </string>, or your app will be rejected by apple:

<!-- Camera -->
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) use camera for video chat</string>

<!-- Microphone -->
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) use microphone for voice chat</string>

<!-- Photo Library -->
<key>NSPhotoLibraryUsageDescription</key>
<string>$(PRODUCT_NAME) send photo/video to agent</string>

Example app

There is an example app provided here for both Objective-C and Swift.

Setup and Configuration

What about events, push notifications, company and user data?

AcquireIO for iOS has support for all these things. For full details please read our documentation.

License

AcquireIO Cocoapods are distributed under Apache License, Version 2.0.

Help

If you have any questions or comments, you can reach us at raju at acquire dot io

Maintainers

About

Your complete customer communication platform - and not just live chat


Languages

Language:Ruby 100.0%