-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ios-build): fix build error with Xcode 11.4 (#98)
* Fix build error with XCode 11.4. Fix by upgrading to Stripe iOS SDK 19. * Bump version * Update xcode version in CI env. * Revert "Update xcode version in CI env." This reverts commit c1f4f64.
- Loading branch information
1 parent
75023e4
commit ec0c3e1
Showing
6 changed files
with
3,606 additions
and
2,301 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "nativescript-stripe", | ||
"version": "6.2.1", | ||
"version": "6.3.0", | ||
"description": "NativeScript Stripe sdk", | ||
"main": "stripe", | ||
"typings": "index.d.ts", | ||
|
@@ -50,6 +50,10 @@ | |
"name": "Osei Fortune", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/triniwiz/nativescript-stripe" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/triniwiz/nativescript-stripe/issues" | ||
}, | ||
|
@@ -62,6 +66,7 @@ | |
"@angular/compiler-cli": "8.0.0", | ||
"@angular/core": "8.0.0", | ||
"@angular/platform-browser": "8.0.0", | ||
"@angular/platform-browser-dynamic": "8.0.0", | ||
"@angular/router": "8.0.0", | ||
"nativescript-angular": "8.0.2", | ||
"prompt": "^1.0.0", | ||
|
@@ -72,7 +77,7 @@ | |
"tns-platform-declarations": "6.0.1", | ||
"typescript": "3.4.5", | ||
"tslint": "^5.14.0", | ||
"zone.js": "^0.8.4" | ||
"zone.js": "~0.9.1" | ||
}, | ||
"bootstrapper": "nativescript-plugin-seed", | ||
"dependencies": {} | ||
|
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,2 +1,2 @@ | ||
platform :ios, '9.0' | ||
pod 'Stripe', '~> 16.0.6' | ||
platform :ios, '10.0' | ||
pod 'Stripe', '~> 19.0.1' |
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.