Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wallee-payment/ios-mobile-sdk-spec
https://github.com/wallee-payment/ios-mobile-sdk-spec
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wallee-payment/ios-mobile-sdk-spec
- Owner: wallee-payment
- Created: 2023-04-06T15:14:38.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-19T07:22:43.000Z (8 months ago)
- Last Synced: 2024-04-24T08:18:22.357Z (8 months ago)
- Language: Ruby
- Size: 3.84 MB
- Stars: 2
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Table of contents
- [Table of contents](#table-of-contents)
- [WalleePaymentSdk](#walleepaymentsdk)
- [Installation](#installation)
- [Requirements](#requirements)
- [Configuration](#configuration)
- [From Cocoapods repository](#from-cocoapods-repository)
- [From GitHub repository](#from-github-repository)
- [Documentation](#documentation)# WalleePaymentSdk
[ios SDK Release on GitHub](https://github.com/wallee-payment/ios-mobile-sdk/releases)
## Installation
### Requirements
- iOS 12.4 is the minimum version supported
### Configuration
Import the SDK to your app as [Cocoapod](https://cocoapods.org/)
#### From Cocoapods repository
```sh
target 'DemoApp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!pod ‘WalleePaymentSdk’, '1.3.0'
target 'DemoAppTests' do
inherit! :search_paths
endend
```#### From GitHub repository
`pod 'WalleePaymentSdk', '1.3.0', :source=> 'https://github.com/wallee-payment/ios-mobile-sdk.git'`
and
`pod 'PaymentResources', '1.0.0'`
```sh
target 'DemoApp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!pod 'WalleePaymentSdk', '1.3.0', :source => 'https://github.com/wallee-payment/ios-mobile-sdk.git'
pod 'PaymentResources', '1.0.0'target 'DemoAppTests' do
inherit! :search_paths
endend
```## Documentation
- [API Reference](./docs/api-reference.md)
- [Integration](./docs/integration.md)
- [Theming](./docs/theming.md)
- [Apple Pay](./docs/apple-pay.md)