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

Commit

Permalink
Merge 2cb5ead into 0e9683d
Browse files Browse the repository at this point in the history
  • Loading branch information
AnanthaKrish committed Nov 19, 2019
2 parents 0e9683d + 2cb5ead commit 62992f1
Show file tree
Hide file tree
Showing 16 changed files with 546 additions and 523 deletions.
2 changes: 1 addition & 1 deletion BMSPush.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.name = 'BMSPush'

s.version = '3.4.4'
s.version = '3.5.0'

s.summary = 'Swift client side Push SDK for IBM Bluemix Push notifications services'
s.homepage = 'https://github.com/ibm-bluemix-mobile-services/bms-clientsdk-swift-push'
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DEPENDENCIES:
- BMSCore (~> 2.4)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
trunk:
- BMSAnalyticsAPI
- BMSCore

Expand All @@ -17,4 +17,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: e80a7d7ad79933b8fc203a435b3e57055e1352bc

COCOAPODS: 1.6.1
COCOAPODS: 1.8.4
4 changes: 2 additions & 2 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,021 changes: 511 additions & 510 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Target Support Files/BMSCore/BMSCore.xcconfig

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ myBMSClient.initialize(bluemixRegion: "Location where your app Hosted")

##### bluemixRegion

- Specifies the location where the app hosted. You can either use one of three values - `BMSClient.Region.usSouth`, `BMSClient.Region.unitedKingdom`, `BMSClient.Region.germany` and `BMSClient.Region.sydney` OR specify the region manually .
- Specifies the location where the app hosted. You can either use one of three values - `BMSClient.Region.usSouth`, `BMSClient.Region.unitedKingdom`, `BMSClient.Region.germany`, `BMSClient.Region.sydney` and `BMSClient.Region.jpTok` OR specify the region manually .

>**Note**: If you are using dedicated service please use `overrideServerHost` and add `bluemixRegion` any value.
Expand Down
8 changes: 3 additions & 5 deletions Source/BMSPushUrlBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import BMSCore

internal let FORWARDSLASH = "/";
internal let IMFPUSH = "imfpush";
// internal let JPIMFPUSH = "jp-tok.imfpush.cloud.ibm.com"
internal let JPIMFPUSH = "jp-tok.imfpush.cloud.ibm.com"
internal let V1 = "v1";
internal let APPS = "apps";
internal let AMPERSAND = "&";
Expand Down Expand Up @@ -64,11 +64,9 @@ import BMSCore
else{
reWritedomain = "stage1-dev.ng.bluemix.net"
}
}
/*else if BMSClient.sharedInstance.bluemixRegion == BMSClient.Region.jpTok {
} else if BMSClient.sharedInstance.bluemixRegion == BMSClient.Region.jpTok {
pwUrl_ += JPIMFPUSH
}*/
else{
} else{
pwUrl_ += IMFPUSH
pwUrl_ += BMSClient.sharedInstance.bluemixRegion!
reWritedomain = ""
Expand Down

0 comments on commit 62992f1

Please sign in to comment.