Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/ios/asyncgate_iOS/.DS_Store
Binary file not shown.
113 changes: 113 additions & 0 deletions src/ios/asyncgate_iOS/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode,cocoapods
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode,cocoapods

### CocoaPods ###
## CocoaPods GitIgnore Template

# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
# - Also handy if you have a large number of dependant pods
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
Pods/

### Swift ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

## Obj-C/Swift specific
*.hmap

## App packaging
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
# *.xcodeproj
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
# .swiftpm

.build/

# CocoaPods
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# Pods/
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build/

# Accio dependency management
Dependencies/
.accio/

# fastlane
# It is recommended to not store the screenshots in the git repo.
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# Code Injection
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/

### Xcode ###

## Xcode 8 and earlier

### Xcode Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcodeproj/project.xcworkspace/
!*.xcworkspace/contents.xcworkspacedata
*.xcconfig
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings
.DS_Store
*.xcuserstate
*.xcconfig.xcconfig

# End of https://www.toptal.com/developers/gitignore/api/swift,xcode,cocoapods
21 changes: 21 additions & 0 deletions src/ios/asyncgate_iOS/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '17.6'

target 'asyncgate_iOS' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

# Pods for asyncgate_iOS
pod 'Alamofire', '~> 5.5'
pod 'KeychainAccess'
pod 'Starscream', '~> 4.0.6'
target 'asyncgate_iOSTests' do
inherit! :search_paths
# Pods for testing
end

target 'asyncgate_iOSUITests' do
# Pods for UI testing
end

end
24 changes: 24 additions & 0 deletions src/ios/asyncgate_iOS/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PODS:
- Alamofire (5.10.2)
- KeychainAccess (4.2.2)
- Starscream (4.0.8)

DEPENDENCIES:
- Alamofire (~> 5.5)
- KeychainAccess
- Starscream (~> 4.0.6)

SPEC REPOS:
trunk:
- Alamofire
- KeychainAccess
- Starscream

SPEC CHECKSUMS:
Alamofire: 7193b3b92c74a07f85569e1a6c4f4237291e7496
KeychainAccess: c0c4f7f38f6fc7bbe58f5702e25f7bd2f65abf51
Starscream: 19b5533ddb925208db698f0ac508a100b884a1b9

PODFILE CHECKSUM: d5b33e6604d89dac19a1810a1f3fcea6c1ea8bef

COCOAPODS: 1.16.2
19 changes: 19 additions & 0 deletions src/ios/asyncgate_iOS/Pods/Alamofire/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading