Skip to content

Commit

Permalink
Merge pull request #12 from LoginRadius/5.6.2
Browse files Browse the repository at this point in the history
Released SDK version 5.6.2
  • Loading branch information
abhi-9-LR committed Aug 29, 2022
2 parents 8bce061 + b7a040a commit 296ac54
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
5.6.2 Release notes (2022-08-29)
=============================================================

### Enhancements
* Upgraded FBSDK dependencies in LoginRadiusSDK for new build system of new Xcode.

### Breaking changes

* As part of FBSDK version 13+ it is required to set FacebookClientToken in the project's Info.plist file. For details on FacebookClientToken please see Facebook document : https://developers.facebook.com/docs/ios/getting-started/#client-token

5.6.1 Release notes (2022-03-03)
=============================================================

### Removed (Deprecated) API:

Expand Down
2 changes: 2 additions & 0 deletions Example/ObjCDemo/ObjCDemo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
<string>1</string>
<key>FacebookAppID</key>
<string>&lt;Your Facebook App&apos;s App ID, if you are not using facebook native login delete this row&gt;</string>
<key>FacebookClientToken</key>
<string>&lt;Your Facebook App&apos;s Client Token, if you are not using facebook native login delete this row&gt;</string>
<key>FacebookDisplayName</key>
<string>&lt;Your Facebook App&apos;s display name, if you are not using facebook native login delete this row&gt;</string>
<key>LSApplicationQueriesSchemes</key>
Expand Down
6 changes: 4 additions & 2 deletions Example/SwiftDemo/SwiftDemo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@
<key>CFBundleVersion</key>
<string>1</string>
<key>FacebookAppID</key>
<string>&lt;Your Facebook App's App ID, if you are not using facebook native login delete this row&gt;</string>
<string>&lt;Your Facebook App&apos;s App ID, if you are not using facebook native login delete this row&gt;</string>
<key>FacebookClientToken</key>
<string>&lt;Your Facebook App&apos;s Client token, if you are not using facebook native login delete this row&gt;</string>
<key>FacebookDisplayName</key>
<string>&lt;Your Facebook App's display name, if you are not using facebook native login delete this row&gt;</string>
<string>&lt;Your Facebook App&apos;s display name, if you are not using facebook native login delete this row&gt;</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
Expand Down
6 changes: 3 additions & 3 deletions LoginRadiusSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'LoginRadiusSDK'
s.version = '5.6.1'
s.version = '5.6.2'
s.summary = 'Official LoginRadius SDK for iOS to integrate User Registration Service or Social Login in your app.'

s.description = <<-DESC
Expand All @@ -20,13 +20,13 @@ s.license = 'MIT'
s.authors = { 'LoginRadius' => 'support@loginradius.com'}
s.social_media_url = 'https://twitter.com/LoginRadius'

s.ios.deployment_target = '9.0'
s.ios.deployment_target = '11.0'

s.source = { :git => 'https://github.com/LoginRadius/ios-sdk.git', :tag => "#{s.version}" }

s.source_files = ['Sources/**/*.{h,m}']

s.dependency 'FBSDKLoginKit', '~> 9.0'
s.dependency 'FBSDKLoginKit', '~> 14.1.0'
s.dependency 'SimpleKeychain', '~> 0.7.0'

s.ios.frameworks = 'Foundation', 'UIKit', 'SystemConfiguration', 'Social', 'Accounts', 'SafariServices'
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use_frameworks!

workspace 'LoginRadiusSDK'

platform :ios, '9.0'
platform :ios, '11.0'

target 'ObjCDemo' do
project 'Example/ObjCDemo/ObjCDemo.xcodeproj'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ To integrate LRSDK into your Xcode project using CocoaPods, specify it in your P

```
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
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.6.1'
pod 'LoginRadiusSDK', '~> 5.6.2'
end
```
Expand Down

0 comments on commit 296ac54

Please sign in to comment.