Skip to content

Commit 3cb49c8

Browse files
authored
Merge pull request #33 from touchlab/kpg/update_bugsnag_sample
Kpg/update bugsnag sample
2 parents 0f3933b + 492ae4c commit 3cb49c8

File tree

54 files changed

+2185
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2185
-0
lines changed
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
# Created by https://www.gitignore.io/api/xcode,swift,objective-c
2+
# Edit at https://www.gitignore.io/?templates=xcode,swift,objective-c
3+
4+
### Objective-C ###
5+
# Xcode
6+
#
7+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
8+
9+
## Build generated
10+
build/
11+
DerivedData/
12+
13+
## Various settings
14+
*.pbxuser
15+
!default.pbxuser
16+
*.mode1v3
17+
!default.mode1v3
18+
*.mode2v3
19+
!default.mode2v3
20+
*.perspectivev3
21+
!default.perspectivev3
22+
xcuserdata/
23+
24+
## Other
25+
*.moved-aside
26+
*.xccheckout
27+
*.xcscmblueprint
28+
29+
## Obj-C/Swift specific
30+
*.hmap
31+
*.ipa
32+
*.dSYM.zip
33+
*.dSYM
34+
35+
# CocoaPods
36+
# We recommend against adding the Pods directory to your .gitignore. However
37+
# you should judge for yourself, the pros and cons are mentioned at:
38+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
39+
# Pods/
40+
# Add this line if you want to avoid checking in source code from the Xcode workspace
41+
# *.xcworkspace
42+
43+
# Carthage
44+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
45+
# Carthage/Checkouts
46+
47+
Carthage/Build
48+
49+
# fastlane
50+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
51+
# screenshots whenever they are needed.
52+
# For more information about the recommended setup visit:
53+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
54+
55+
fastlane/report.xml
56+
fastlane/Preview.html
57+
fastlane/screenshots/**/*.png
58+
fastlane/test_output
59+
60+
# Code Injection
61+
# After new code Injection tools there's a generated folder /iOSInjectionProject
62+
# https://github.com/johnno1962/injectionforxcode
63+
64+
iOSInjectionProject/
65+
66+
### Objective-C Patch ###
67+
68+
### Swift ###
69+
# Xcode
70+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
71+
72+
73+
74+
75+
76+
## Playgrounds
77+
timeline.xctimeline
78+
playground.xcworkspace
79+
80+
# Swift Package Manager
81+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
82+
# Packages/
83+
# Package.pins
84+
# Package.resolved
85+
.build/
86+
# Add this line if you want to avoid checking in Xcode SPM integration.
87+
# .swiftpm/xcode
88+
89+
# CocoaPods
90+
# We recommend against adding the Pods directory to your .gitignore. However
91+
# you should judge for yourself, the pros and cons are mentioned at:
92+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
93+
# Pods/
94+
# Add this line if you want to avoid checking in source code from the Xcode workspace
95+
# *.xcworkspace
96+
97+
# Carthage
98+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
99+
# Carthage/Checkouts
100+
101+
102+
# Accio dependency management
103+
Dependencies/
104+
.accio/
105+
106+
# fastlane
107+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
108+
# screenshots whenever they are needed.
109+
# For more information about the recommended setup visit:
110+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
111+
112+
113+
# Code Injection
114+
# After new code Injection tools there's a generated folder /iOSInjectionProject
115+
# https://github.com/johnno1962/injectionforxcode
116+
117+
118+
### Xcode ###
119+
# Xcode
120+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
121+
122+
## User settings
123+
124+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
125+
126+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
127+
128+
## Xcode Patch
129+
*.xcodeproj/*
130+
!*.xcodeproj/project.pbxproj
131+
!*.xcodeproj/xcshareddata/
132+
!*.xcworkspace/contents.xcworkspacedata
133+
/*.gcno
134+
135+
### Xcode Patch ###
136+
**/xcshareddata/WorkspaceSettings.xcsettings
137+
138+
# End of https://www.gitignore.io/api/xcode,swift,objective-c

0 commit comments

Comments
 (0)