-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebrand, UserInfo, Swift 4 migration and token validation (#141)
* Migrate to Swift 4 * Changes objective-c inference to default * Validates tokens (#137) * sync development branch * Add token validation * fix spacing * update deployment target * remove trailing whitespace * rebrand bluemix to ibm cloud (#140) * rebrand bluemix to ibm cloud * update gitignore file * update readme * udpate branding * rename workspace to IBMCloudAppID * Codacy Error Fix (#142) * rebrand bluemix to ibm cloud * update gitignore file * update readme * udpate branding * rename workspace to IBMCloudAppID * Codacy fix * codacy fix
- Loading branch information
1 parent
2a9b4f9
commit 7a4978a
Showing
69 changed files
with
1,153 additions
and
774 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
BluemixAppID.xcodeproj/ | ||
BluemixAppID.xcworkspace/ | ||
IBMCloudAppID.xcodeproj/ | ||
IBMCloudAppID.xcworkspace/ | ||
Pods/ | ||
Podfile.lock | ||
.idea/ | ||
*.DS_Store | ||
*.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
coverage_service: coveralls | ||
workspace: BluemixAppID | ||
xcodeproj: BluemixAppID.xcodeproj | ||
scheme: BluemixAppIDTests | ||
workspace: IBMCloudAppID | ||
xcodeproj: IBMCloudAppID.xcodeproj | ||
scheme: IBMCloudAppIDTests | ||
ignore: | ||
- BluemixAppIDTests/* | ||
- IBMCloudAppIDTests/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 | ||
4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-32.5 KB
...xcodeproj/project.xcworkspace/xcuserdata/odedb.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "IBMCloudAppID" | ||
s.version = '4.0.0' | ||
s.summary = "AppID Swift SDK" | ||
s.homepage = "https://github.com/ibm-cloud-security/appid-clientsdk-swift" | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { "IBM Cloud Services Mobile SDK" => "[email protected]" } | ||
s.swift_version = "4.0" | ||
s.source = { :git => 'https://github.com/ibm-cloud-security/appid-clientsdk-swift.git', :tag => "#{s.version}" } | ||
s.dependency 'BMSCore' | ||
s.dependency 'JOSESwift' | ||
s.requires_arc = true | ||
s.source_files = 'Source/**/*.swift', 'Source/Resources/IBMCloudAppID.h' | ||
s.ios.deployment_target = '10.0' | ||
end |
198 changes: 103 additions & 95 deletions
198
BluemixAppID.xcodeproj/project.pbxproj → IBMCloudAppID.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
IBMCloudAppID.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.