LoginRadiusSDK

Official LoginRadius SDK for iOS to integrate User Registration Service or Social Login in your app.


Keywords
cocoapods, identity-management, ios-sdk, loginradius, loginradius-ios-sdk, loginradius-sdk, native-apps, single-sign-on, social-login, wrapper-library
License
MIT
Install
pod try LoginRadiusSDK

Documentation

LoginRadius iOS SDK

Home Image

Introduction

LoginRadius is an Identity Management Platform that simplifies user registration while securing data. LoginRadius Platform simplifies and secures your user registration process, increases conversion with Social Login that combines 30 major social platforms, and offers a full solution with Traditional Customer Registration. You can gather a wealth of user profile data from Social Login or Traditional Customer Registration.

LoginRadius centralizes it all in one place, making it easy to manage and access. Easily integrate LoginRadius with all of your third-party applications, like MailChimp, Google Analytics, Livefyre and many more, making it easy to utilize the data you are capturing.

LoginRadius helps businesses boost user engagement on their web/mobile platform, manage online identities, utilize social media for marketing, capture accurate consumer data, and get unique social insight into their customer base.

Please visit here for more information.

Documentation

For full documentation visit here

Author

LoginRadius

License

This project is licensed under the MIT license. See the LICENSE file for more info.

There are three projects in the library:

a. ObjCDemo - This is the demo application in objective-c.
a. SwiftDemo - This is the demo application in Swift(Supported Swift version 4.2).
b. LoginRadiusSDK -This is the LoginRadius SDK.

Installing

CocoaPods

We recommend using CocoaPods for installing the library in a project.

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate LRSDK into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'

target 'TargetName' do

#Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'LoginRadiusSDK', '~> 5.9.0'
end

Then, run the following command:

$ pod install

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.

To add LoginRadiusSDK to your project using SwiftPM follow these steps:

  1. Open your project in Xcode
  2. In the main menu, select File -> Swift Packages -> Add Package Dependency...
  3. In the window, enter the package url https://github.com/LoginRadius/ios-sdk.git

To use LoginRadiusSDK in your code, import the module or header files as needed:

Objective-c

@import LoginRadiusPackage;  

Swift

import LoginRadiusPackage