Skip to content

acquireio/AcquireIO-Core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AcquireIO

CocoaPods Languages CocoaPods Apache License

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, iOS 11, iOS 12 and iOS 13.

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

Building with XCode 11.4+ and Swift 5.2.2 is required for Swift.

CocoaPods

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