-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a49f239
commit 669a3dc
Showing
51 changed files
with
1,627 additions
and
1,222 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "BitreserveSdk", | ||
"version": "0.1.0", | ||
"summary": "The Bitreserve Swift SDK", | ||
"description": "Bitreserve Swift SDK\n\nThis SDK provides an abstraction from the bitreserve api.\nMore information of the Bitreserve developer tools available at: https://developer.bitreserve.org", | ||
"homepage": "https://github.com/bitreserve/bitreserve-sdk-ios", | ||
"license": "MIT", | ||
"authors": { | ||
"Diogo Guimarães": "[email protected]", | ||
"Sandro Machado": "[email protected]" | ||
}, | ||
"source": { | ||
"git": "https://github.com/bitreserve/bitreserve-sdk-ios.git", | ||
"tag": "0.1.0" | ||
}, | ||
"platforms": { | ||
"ios": "9.0" | ||
}, | ||
"requires_arc": true, | ||
"source_files": "Source/**/*", | ||
"dependencies": { | ||
"SwiftClient": [ | ||
"~> 2.0" | ||
], | ||
"ObjectMapper": [ | ||
"~> 0.18" | ||
] | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
BitreserveSdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
99 changes: 99 additions & 0 deletions
99
BitreserveSdk.xcodeproj/xcshareddata/xcschemes/BitreserveSdk.xcscheme
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,99 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "0700" | ||
version = "1.3"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "YES"> | ||
<BuildActionEntries> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "YES" | ||
buildForProfiling = "YES" | ||
buildForArchiving = "YES" | ||
buildForAnalyzing = "YES"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "BC23812B1BB462170060CC80" | ||
BuildableName = "BitreserveSdk.framework" | ||
BlueprintName = "BitreserveSdk" | ||
ReferencedContainer = "container:BitreserveSdk.xcodeproj"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
</BuildActionEntries> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES"> | ||
<Testables> | ||
<TestableReference | ||
skipped = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "BC2381351BB462180060CC80" | ||
BuildableName = "BitreserveSdkTests.xctest" | ||
BlueprintName = "BitreserveSdkTests" | ||
ReferencedContainer = "container:BitreserveSdk.xcodeproj"> | ||
</BuildableReference> | ||
</TestableReference> | ||
</Testables> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "BC23812B1BB462170060CC80" | ||
BuildableName = "BitreserveSdk.framework" | ||
BlueprintName = "BitreserveSdk" | ||
ReferencedContainer = "container:BitreserveSdk.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
<AdditionalOptions> | ||
</AdditionalOptions> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "BC23812B1BB462170060CC80" | ||
BuildableName = "BitreserveSdk.framework" | ||
BlueprintName = "BitreserveSdk" | ||
ReferencedContainer = "container:BitreserveSdk.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
<AdditionalOptions> | ||
</AdditionalOptions> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "BC23812B1BB462170060CC80" | ||
BuildableName = "BitreserveSdk.framework" | ||
BlueprintName = "BitreserveSdk" | ||
ReferencedContainer = "container:BitreserveSdk.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
BitreserveSdk/Example/BitreserveSdk/Base.lproj/LaunchScreen.xib
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.