Skip to content

Commit 76b57df

Browse files
MF2425: Updated Backbase server URLs (#61)
Co-authored-by: Sadiq Mohammad <sadiq@backbase.com>
1 parent 0b22097 commit 76b57df

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ post_install do |installer_representation|
6767
end
6868

6969
target.build_configurations.each do |config|
70-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
70+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '17.0'
7171
# Our frameworks are built with library evolution support enabled,
7272
# and they are linked against dependencies with the same setting.
7373
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'

Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,6 @@ SPEC CHECKSUMS:
193193
UserManagerUserProfileUseCase: 8cee3f5de68f0e84455d3ec7ed50fba73d948fa8
194194
UserProfileJourney: 5ae7c71ee3087396b5f1f7df5d397791c23b86ab
195195

196-
PODFILE CHECKSUM: f13e4a520f0cd231eb4b9e70d04f5066790ffd60
196+
PODFILE CHECKSUM: daecd276c6f23e76390bf8b5c7f3b0903737d99d
197197

198198
COCOAPODS: 1.16.2

appCommon/Configuration/BBConfigurationConstants.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@
88
struct BBConfigurationConstants {
99
static let version = "6.1.5"
1010
static var apiKey = "Add your API key here"
11-
static let identityBaseURL = "https://identity.dev.sdbxaz.azure.backbaseservices.com"
12-
static let backbaseServerURL = "https://app.dev.sdbxaz.azure.backbaseservices.com"
11+
static let identityBaseURL = "https://identity.prd.sdbxaz.azure.backbaseservices.com"
12+
static let backbaseServerURL = "https://app.prd.sdbxaz.azure.backbaseservices.com"
13+
static let peristentHeaders = [
14+
"X-User-Context": ["backbaseservices.com"]
15+
]
1316
static let realm = "retail"
1417
static let clientId = "mobile-client"
1518
static let applicationKey = "retail"

appCommon/Extensions/AppDelegate+MSDK.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ extension AppDelegate {
2828
allowedDomains: BBConfigurationConstants.allowedDomains
2929
)
3030
configuration.bankTimeZone = BBConfigurationConstants.bankTimeZone
31+
configuration.persistentHeaders = BBConfigurationConstants.peristentHeaders
3132
try Backbase.initialize(fromConfig: configuration)
3233
appendCustomHeader()
3334
} catch {

0 commit comments

Comments
 (0)