-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from backtrace-labs/develop
* Fix Xcode 11.x compilation issue (#38) * Initialize URLSession response Fix issue in Xcode 11 caused by URLSession response being captured before initialization * Fix dangling pointer Use `withUnsafeMutableBytes` in order to explicitly convert the argument to buffer pointer valid for a defined scope. * Bump podspec version * Update dependencies * Update Travis CI script * Update Fastfile * Add Brewfile * Remove Fastlane from Gemfile (#40) * Feature/update schemes (#41) * Update target's schemes * Bump Xcode version on Travis CI
- Loading branch information
Showing
17 changed files
with
103 additions
and
199 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 +1 @@ | ||
2.6.4 | ||
2.7.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
language: swift | ||
os: osx | ||
osx_image: xcode11.2 | ||
before_install: | ||
- bundler install | ||
- bundle update | ||
- bundle exec pod repo update | ||
- bundle exec pod install | ||
osx_image: xcode11.6 | ||
script: | ||
- bundle exec fastlane ios tests | ||
- bundle exec fastlane mac tests | ||
- sh scripts/install.sh | ||
- sh scripts/test.sh |
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
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 @@ | ||
brew "fastlane" |
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,39 @@ | ||
{ | ||
"entries": { | ||
"brew": { | ||
"fastlane": { | ||
"version": "2.152.0", | ||
"bottle": { | ||
"cellar": ":any", | ||
"prefix": "/usr/local", | ||
"files": { | ||
"catalina": { | ||
"url": "https://homebrew.bintray.com/bottles/fastlane-2.152.0.catalina.bottle.tar.gz", | ||
"sha256": "133fd49959694621a60d6212e9e21631c34015b836427353e8c864a280d579cb" | ||
}, | ||
"mojave": { | ||
"url": "https://homebrew.bintray.com/bottles/fastlane-2.152.0.mojave.bottle.tar.gz", | ||
"sha256": "346c5892ebc93be7f37ab7e080db591d4d91c1849096b478739a1873988af4f9" | ||
}, | ||
"high_sierra": { | ||
"url": "https://homebrew.bintray.com/bottles/fastlane-2.152.0.high_sierra.bottle.tar.gz", | ||
"sha256": "6d96e2a20decfae69a34e7e774edaa30da4b3d7f7895291612c33031a6d27d53" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"system": { | ||
"macos": { | ||
"catalina": { | ||
"HOMEBREW_VERSION": "2.4.7", | ||
"HOMEBREW_PREFIX": "/usr/local", | ||
"Homebrew/homebrew-core": "3635145b479e8168b3a6b6f93c6662e862364fd3", | ||
"CLT": "1103.0.32.62", | ||
"Xcode": "11.6", | ||
"macOS": "10.15.6" | ||
} | ||
} | ||
} | ||
} |
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,8 +1,3 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } | ||
|
||
gem "fastlane" | ||
gem "cocoapods" |
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.