Skip to content

Commit f3b7780

Browse files
author
Bell App Lab
committed
Bump to v1.0.0
1 parent 70cba38 commit f3b7780

Some content is hidden

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

46 files changed

+2275
-806
lines changed

.gitignore

Lines changed: 75 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,49 @@
1-
# OS X
2-
.DS_Store
3-
41

5-
# Created by https://www.gitignore.io/api/xcode,swift
2+
# Created by https://www.gitignore.io/api/swift,xcode,macos,carthage,cocoapods,swiftpackagemanager
63

7-
### Xcode ###
8-
# Xcode
4+
### Carthage ###
5+
# Carthage
96
#
10-
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
8+
# Carthage/Checkouts
119

12-
## Build generated
13-
build/
14-
DerivedData/
10+
Carthage/Build
1511

16-
## Various settings
17-
*.pbxuser
18-
!default.pbxuser
19-
*.mode1v3
20-
!default.mode1v3
21-
*.mode2v3
22-
!default.mode2v3
23-
*.perspectivev3
24-
!default.perspectivev3
25-
xcuserdata/
12+
### CocoaPods ###
13+
## CocoaPods GitIgnore Template
2614

27-
## Other
28-
*.moved-aside
29-
*.xccheckout
30-
*.xcscmblueprint
15+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
16+
# - Also handy if you have a large number of dependant pods
17+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
18+
Pods/
3119

20+
### macOS ###
21+
# General
22+
.DS_Store
23+
.AppleDouble
24+
.LSOverride
25+
26+
# Icon must end with two \r
27+
Icon
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
3247

3348
### Swift ###
3449
# Xcode
@@ -52,7 +67,8 @@ xcuserdata/
5267

5368
## Other
5469
*.moved-aside
55-
*.xcuserstate
70+
*.xccheckout
71+
*.xcscmblueprint
5672

5773
## Obj-C/Swift specific
5874
*.hmap
@@ -68,6 +84,8 @@ playground.xcworkspace
6884
#
6985
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
7086
# Packages/
87+
# Package.pins
88+
# Package.resolved
7189
.build/
7290

7391
# CocoaPods
@@ -77,22 +95,50 @@ playground.xcworkspace
7795
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
7896
#
7997
# Pods/
98+
#
99+
# Add this line if you want to avoid checking in source code from the Xcode workspace
100+
# *.xcworkspace
80101

81102
# Carthage
82103
#
83104
# Add this line if you want to avoid checking in source code from Carthage dependencies.
84105
# Carthage/Checkouts
85106

86-
Carthage/Build
87107

88108
# fastlane
89109
#
90110
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
91111
# screenshots whenever they are needed.
92112
# For more information about the recommended setup visit:
93-
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
113+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
94114

95115
fastlane/report.xml
96116
fastlane/Preview.html
97-
fastlane/screenshots
98-
fastlane/test_output
117+
fastlane/screenshots/**/*.png
118+
fastlane/test_output
119+
120+
### SwiftPackageManager ###
121+
Packages
122+
xcuserdata
123+
*.xcodeproj
124+
125+
### Xcode ###
126+
# Xcode
127+
#
128+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
129+
130+
## User settings
131+
132+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
133+
134+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
135+
136+
### Xcode Patch ###
137+
*.xcodeproj/*
138+
!*.xcodeproj/project.pbxproj
139+
!*.xcodeproj/xcshareddata/
140+
!*.xcworkspace/contents.xcworkspacedata
141+
/*.gcno
142+
143+
144+
# End of https://www.gitignore.io/api/swift,xcode,macos,carthage,cocoapods,swiftpackagemanager

Example/Example.xcodeproj/project.pbxproj

Lines changed: 705 additions & 97 deletions
Large diffs are not rendered by default.

Example/Example/AppDelegate.swift

Lines changed: 0 additions & 23 deletions
This file was deleted.

Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 0 additions & 38 deletions
This file was deleted.

Example/Example/Base.lproj/LaunchScreen.storyboard

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)