Skip to content

Commit 3989612

Browse files
committed
Update framework to version 2.6.4
1 parent 80b5608 commit 3989612

File tree

122 files changed

+351936
-247732
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+351936
-247732
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 2.6.4
2+
2025-02-06
3+
- [Changed] Fix issues on SDK PIN lock configuration after backup restore
4+
15
# Version 3.6.6
26
2025-25-04
37
- [Changed] Add new method to retrieve SDK logs which doesn't require SDK launch

CarthageJson/FuturaeKit.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,6 @@
6363
"2.6.2": "https://github.com/Futurae-Technologies/ios-sdk/releases/download/v2.6.2/FuturaeKit-v2.6.2-framework.zip",
6464
"3.6.5": "https://github.com/Futurae-Technologies/ios-sdk/releases/download/v3.6.5/FuturaeKit-v3.6.5-framework.zip",
6565
"2.6.3": "https://github.com/Futurae-Technologies/ios-sdk/releases/download/v2.6.3/FuturaeKit-v2.6.3-framework.zip",
66-
"3.6.6": "https://github.com/Futurae-Technologies/ios-sdk/releases/download/v3.6.6/FuturaeKit-v3.6.6-framework.zip"
66+
"3.6.6": "https://github.com/Futurae-Technologies/ios-sdk/releases/download/v3.6.6/FuturaeKit-v3.6.6-framework.zip",
67+
"2.6.4": "https://github.com/Futurae-Technologies/ios-sdk/releases/download/v2.6.4/FuturaeKit-v2.6.4-framework.zip"
6768
}

FuturaeDemo.xcodeproj/project.pbxproj

Lines changed: 208 additions & 246 deletions
Large diffs are not rendered by default.
File renamed without changes.

FuturaeDemo/UI/Adaptive/AdaptiveViewController.swift renamed to FuturaeDemo/AdaptiveViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AdaptiveViewController: UIViewController {
2727

2828
return true
2929
})
30-
pendingCollections = FTRClient.shared.pendingAdaptiveCollections
30+
pendingCollections = FTRClient.shared()?.pendingAdaptiveCollections() ?? []
3131
tableView.reloadData()
3232
}
3333

FuturaeDemo/AppDelegate.h

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//
2+
// AppDelegate.h
3+
// FuturaeDemo
4+
//
5+
// Created by Dimitris Togias on 27/12/2017.
6+
// Unauthorized copying of this file, via any medium is strictly prohibited.
7+
// Proprietary and Confidential.
8+
//
9+
// Copyright (C) 2017 Futurae Technologies AG - All rights reserved.
10+
// For any inquiry, contact: legal@futurae.com
11+
//
12+
13+
#import <UIKit/UIKit.h>
14+
#import <FuturaeKit/FTRNotificationDelegate.h>
15+
#import <FuturaeKit/FTROpenURLDelegate.h>
16+
17+
@interface AppDelegate : UIResponder <UIApplicationDelegate, FTRNotificationDelegate, FTROpenURLDelegate>
18+
19+
@property (strong, nonatomic) UIWindow *window;
20+
21+
22+
@end
23+

FuturaeDemo/AppDelegate.m

Lines changed: 444 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)