Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

Latest commit

 

History

History
55 lines (35 loc) · 1.78 KB

README.md

File metadata and controls

55 lines (35 loc) · 1.78 KB

QuramiLink 🔗

Version License Platform

Description

QuramiLink is a convenient class that you can use to open an office page of Qurami directly from your app.
It checks the availability of Qurami Client on the destination device and, if present, opens the office page.
All you need to do is to provide a valid office link.
We will update this class to ensure that any integration with the Qurami iOS client will be seamlessly supported.

Usage 📖

The usage is trivial, simply import QuramiLink.h in your implementation file and call:

NSError *error;
[QuramiLink openQuramiOfficeWithOfficeLink: @"yourOfficeLink" error: &error];

if(error){
    //there must be a problem with your officeLink, handle it here!
}

⚠️IMPORTANT⚠️
If you're currently using Xcode 7 along with the iOS 9 sdk, you have to add Qurami to your whitelisted apps by adding the key: quramiapp
to the: LSApplicationQueriesSchemes array in your Info.plistfile.
For further infos watch this interesting wwdc 2015 session about privacy in iOS 9.

Browse our sample code for any doubts 😉!

Installation 🔨

QuramiLink is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "QuramiLink"

and then execute

pod install

License 📃

QuramiLink is available under the MIT license. See the LICENSE file for more info.