Showing
100 changed files
with
1473 additions
and
0 deletions
Too many changes to show.
To preserve performance only 100 of 100+ files are displayed.
Fonts + Extension/Fonts + Extension.swift
0 → 100644
1 | +// | ||
2 | +// Fonts + Extension.swift | ||
3 | +// InterQR-Internship | ||
4 | +// | ||
5 | +// Created by Дмитрий Тимофеев on 02.06.2022. | ||
6 | +// | ||
7 | + | ||
8 | +import UIKit | ||
9 | + | ||
10 | +enum SkModernistFontType: String { | ||
11 | + case bold = "Sk-Modernist-Bold" | ||
12 | + case mono = "Sk-Modernist-Mono" | ||
13 | + case regular = "Sk-Modernist-Regular" | ||
14 | +} | ||
15 | + | ||
16 | +extension UIFont { | ||
17 | + static func skModernist(type: SkModernistFontType, ofSize: CGFloat) -> UIFont { | ||
18 | + if let font = UIFont(name: type.rawValue, size: ofSize) { | ||
19 | + return font | ||
20 | + } else { | ||
21 | + return .systemFont(ofSize: ofSize) | ||
22 | + } | ||
23 | + } | ||
24 | +} |
InterQR-Internship.xcodeproj/project.pbxproj
0 → 100644
1 | +// !$*UTF8*$! | ||
2 | +{ | ||
3 | + archiveVersion = 1; | ||
4 | + classes = { | ||
5 | + }; | ||
6 | + objectVersion = 55; | ||
7 | + objects = { | ||
8 | + | ||
9 | +/* Begin PBXBuildFile section */ | ||
10 | + 00E581BB284F71CD00E779FB /* Checkbox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00E581BA284F71CD00E779FB /* Checkbox.swift */; }; | ||
11 | + 17058D52284A4F150078DD82 /* CodeVerificationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17058D51284A4F150078DD82 /* CodeVerificationViewController.swift */; }; | ||
12 | + 17058D54284A4F670078DD82 /* CodeVerificationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17058D53284A4F670078DD82 /* CodeVerificationView.swift */; }; | ||
13 | + 17287C602848AD8D00AA7113 /* Fonts + Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17287C5F2848AD8D00AA7113 /* Fonts + Extension.swift */; }; | ||
14 | + 17287C692848C69600AA7113 /* Sk-Modernist-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 17287C642848C69600AA7113 /* Sk-Modernist-Bold.otf */; }; | ||
15 | + 17287C6A2848C69600AA7113 /* Sk-Modernist-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = 17287C652848C69600AA7113 /* Sk-Modernist-Regular.otf */; }; | ||
16 | + 17287C6D2848C69600AA7113 /* Sk-Modernist-Mono.otf in Resources */ = {isa = PBXBuildFile; fileRef = 17287C682848C69600AA7113 /* Sk-Modernist-Mono.otf */; }; | ||
17 | + 1729E21D28465163006C7C29 /* PhoneService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1729E21C28465162006C7C29 /* PhoneService.swift */; }; | ||
18 | + 1729E21F28465595006C7C29 /* PhoneNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1729E21E28465595006C7C29 /* PhoneNumberView.swift */; }; | ||
19 | + 1729E22128465DA9006C7C29 /* PhonePickerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1729E22028465DA9006C7C29 /* PhonePickerModel.swift */; }; | ||
20 | + 1732AC71284769B50042C9F7 /* TextFieldWithPadding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1732AC70284769B50042C9F7 /* TextFieldWithPadding.swift */; }; | ||
21 | + 1732AC7328477BB40042C9F7 /* PickerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1732AC7228477BB40042C9F7 /* PickerViewCell.swift */; }; | ||
22 | + 1738F7D82850F5D5003F1806 /* SettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1738F7D72850F5D5003F1806 /* SettingsViewController.swift */; }; | ||
23 | + 1738F7DA2850F5F1003F1806 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1738F7D92850F5F1003F1806 /* SettingsView.swift */; }; | ||
24 | + 1738F7DC2850F980003F1806 /* ProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1738F7DB2850F980003F1806 /* ProfileView.swift */; }; | ||
25 | + 1778DA3E2850FF89006619C4 /* NotificationsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1778DA3D2850FF89006619C4 /* NotificationsView.swift */; }; | ||
26 | + 1778DA402851042F006619C4 /* EditInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1778DA3F2851042F006619C4 /* EditInfoView.swift */; }; | ||
27 | + 178A61D12850DDAA001509A4 /* HomeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 178A61D02850DDAA001509A4 /* HomeTableViewCell.swift */; }; | ||
28 | + 17ABFE58284FD20C003B6959 /* HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17ABFE57284FD20C003B6959 /* HomeViewController.swift */; }; | ||
29 | + 17ABFE5A284FD293003B6959 /* HomeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17ABFE59284FD293003B6959 /* HomeView.swift */; }; | ||
30 | + 17CF9EE12844ED8F000D8077 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17CF9EE02844ED8F000D8077 /* AppDelegate.swift */; }; | ||
31 | + 17CF9EE32844ED8F000D8077 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17CF9EE22844ED8F000D8077 /* SceneDelegate.swift */; }; | ||
32 | + 17CF9EE52844ED8F000D8077 /* VerificationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17CF9EE42844ED8F000D8077 /* VerificationViewController.swift */; }; | ||
33 | + 17CF9EEA2844ED90000D8077 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 17CF9EE92844ED90000D8077 /* Assets.xcassets */; }; | ||
34 | + 17CF9EED2844ED90000D8077 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 17CF9EEB2844ED90000D8077 /* LaunchScreen.storyboard */; }; | ||
35 | + 17CF9EF72844EF8B000D8077 /* VerificationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17CF9EF62844EF8B000D8077 /* VerificationView.swift */; }; | ||
36 | + CADC9D02EAEA6638FF235EF7 /* Pods_InterQR_Internship.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C7C589B3DBEEEE67D9D0AD2A /* Pods_InterQR_Internship.framework */; }; | ||
37 | +/* End PBXBuildFile section */ | ||
38 | + | ||
39 | +/* Begin PBXFileReference section */ | ||
40 | + 00E581BA284F71CD00E779FB /* Checkbox.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Checkbox.swift; sourceTree = "<group>"; }; | ||
41 | + 17058D51284A4F150078DD82 /* CodeVerificationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CodeVerificationViewController.swift; sourceTree = "<group>"; }; | ||
42 | + 17058D53284A4F670078DD82 /* CodeVerificationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CodeVerificationView.swift; sourceTree = "<group>"; }; | ||
43 | + 17287C5F2848AD8D00AA7113 /* Fonts + Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Fonts + Extension.swift"; sourceTree = "<group>"; }; | ||
44 | + 17287C642848C69600AA7113 /* Sk-Modernist-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sk-Modernist-Bold.otf"; sourceTree = "<group>"; }; | ||
45 | + 17287C652848C69600AA7113 /* Sk-Modernist-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sk-Modernist-Regular.otf"; sourceTree = "<group>"; }; | ||
46 | + 17287C682848C69600AA7113 /* Sk-Modernist-Mono.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sk-Modernist-Mono.otf"; sourceTree = "<group>"; }; | ||
47 | + 1729E21C28465162006C7C29 /* PhoneService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneService.swift; sourceTree = "<group>"; }; | ||
48 | + 1729E21E28465595006C7C29 /* PhoneNumberView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneNumberView.swift; sourceTree = "<group>"; }; | ||
49 | + 1729E22028465DA9006C7C29 /* PhonePickerModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhonePickerModel.swift; sourceTree = "<group>"; }; | ||
50 | + 1732AC70284769B50042C9F7 /* TextFieldWithPadding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithPadding.swift; sourceTree = "<group>"; }; | ||
51 | + 1732AC7228477BB40042C9F7 /* PickerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PickerViewCell.swift; sourceTree = "<group>"; }; | ||
52 | + 1738F7D72850F5D5003F1806 /* SettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsViewController.swift; sourceTree = "<group>"; }; | ||
53 | + 1738F7D92850F5F1003F1806 /* SettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = "<group>"; }; | ||
54 | + 1738F7DB2850F980003F1806 /* ProfileView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileView.swift; sourceTree = "<group>"; }; | ||
55 | + 1778DA3D2850FF89006619C4 /* NotificationsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationsView.swift; sourceTree = "<group>"; }; | ||
56 | + 1778DA3F2851042F006619C4 /* EditInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditInfoView.swift; sourceTree = "<group>"; }; | ||
57 | + 178A61D02850DDAA001509A4 /* HomeTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeTableViewCell.swift; sourceTree = "<group>"; }; | ||
58 | + 17ABFE57284FD20C003B6959 /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = "<group>"; }; | ||
59 | + 17ABFE59284FD293003B6959 /* HomeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeView.swift; sourceTree = "<group>"; }; | ||
60 | + 17CF9EDD2844ED8F000D8077 /* InterQR-Internship.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "InterQR-Internship.app"; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
61 | + 17CF9EE02844ED8F000D8077 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; | ||
62 | + 17CF9EE22844ED8F000D8077 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; }; | ||
63 | + 17CF9EE42844ED8F000D8077 /* VerificationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VerificationViewController.swift; sourceTree = "<group>"; }; | ||
64 | + 17CF9EE92844ED90000D8077 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | ||
65 | + 17CF9EEC2844ED90000D8077 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | ||
66 | + 17CF9EEE2844ED90000D8077 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | ||
67 | + 17CF9EF62844EF8B000D8077 /* VerificationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VerificationView.swift; sourceTree = "<group>"; }; | ||
68 | + 5BDBB5A6BD07C19C7C41277E /* Pods-InterQR-Internship.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InterQR-Internship.release.xcconfig"; path = "Target Support Files/Pods-InterQR-Internship/Pods-InterQR-Internship.release.xcconfig"; sourceTree = "<group>"; }; | ||
69 | + 5DBC5918C180544DDA6F77E2 /* Pods-InterQR-Internship.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-InterQR-Internship.debug.xcconfig"; path = "Target Support Files/Pods-InterQR-Internship/Pods-InterQR-Internship.debug.xcconfig"; sourceTree = "<group>"; }; | ||
70 | + C7C589B3DBEEEE67D9D0AD2A /* Pods_InterQR_Internship.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_InterQR_Internship.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
71 | +/* End PBXFileReference section */ | ||
72 | + | ||
73 | +/* Begin PBXFrameworksBuildPhase section */ | ||
74 | + 17CF9EDA2844ED8F000D8077 /* Frameworks */ = { | ||
75 | + isa = PBXFrameworksBuildPhase; | ||
76 | + buildActionMask = 2147483647; | ||
77 | + files = ( | ||
78 | + CADC9D02EAEA6638FF235EF7 /* Pods_InterQR_Internship.framework in Frameworks */, | ||
79 | + ); | ||
80 | + runOnlyForDeploymentPostprocessing = 0; | ||
81 | + }; | ||
82 | +/* End PBXFrameworksBuildPhase section */ | ||
83 | + | ||
84 | +/* Begin PBXGroup section */ | ||
85 | + 00E581B0284F666000E779FB /* Modules */ = { | ||
86 | + isa = PBXGroup; | ||
87 | + children = ( | ||
88 | + 1738F7D42850F5A1003F1806 /* SettingsScreen */, | ||
89 | + 17ABFE54284FD1C8003B6959 /* HomeScreen */, | ||
90 | + 00E581B1284F666600E779FB /* VerificationSceen */, | ||
91 | + 00E581B4284F669600E779FB /* OTPScreen */, | ||
92 | + ); | ||
93 | + path = Modules; | ||
94 | + sourceTree = "<group>"; | ||
95 | + }; | ||
96 | + 00E581B1284F666600E779FB /* VerificationSceen */ = { | ||
97 | + isa = PBXGroup; | ||
98 | + children = ( | ||
99 | + 00E581B3284F667C00E779FB /* ViewController */, | ||
100 | + 00E581B2284F667600E779FB /* View */, | ||
101 | + ); | ||
102 | + path = VerificationSceen; | ||
103 | + sourceTree = "<group>"; | ||
104 | + }; | ||
105 | + 00E581B2284F667600E779FB /* View */ = { | ||
106 | + isa = PBXGroup; | ||
107 | + children = ( | ||
108 | + 1729E21E28465595006C7C29 /* PhoneNumberView.swift */, | ||
109 | + 1732AC7228477BB40042C9F7 /* PickerViewCell.swift */, | ||
110 | + 1732AC70284769B50042C9F7 /* TextFieldWithPadding.swift */, | ||
111 | + 17CF9EF62844EF8B000D8077 /* VerificationView.swift */, | ||
112 | + ); | ||
113 | + path = View; | ||
114 | + sourceTree = "<group>"; | ||
115 | + }; | ||
116 | + 00E581B3284F667C00E779FB /* ViewController */ = { | ||
117 | + isa = PBXGroup; | ||
118 | + children = ( | ||
119 | + 17CF9EE42844ED8F000D8077 /* VerificationViewController.swift */, | ||
120 | + ); | ||
121 | + path = ViewController; | ||
122 | + sourceTree = "<group>"; | ||
123 | + }; | ||
124 | + 00E581B4284F669600E779FB /* OTPScreen */ = { | ||
125 | + isa = PBXGroup; | ||
126 | + children = ( | ||
127 | + 00E581B6284F66B400E779FB /* ViewController */, | ||
128 | + 00E581B5284F66AB00E779FB /* View */, | ||
129 | + ); | ||
130 | + path = OTPScreen; | ||
131 | + sourceTree = "<group>"; | ||
132 | + }; | ||
133 | + 00E581B5284F66AB00E779FB /* View */ = { | ||
134 | + isa = PBXGroup; | ||
135 | + children = ( | ||
136 | + 17058D53284A4F670078DD82 /* CodeVerificationView.swift */, | ||
137 | + ); | ||
138 | + path = View; | ||
139 | + sourceTree = "<group>"; | ||
140 | + }; | ||
141 | + 00E581B6284F66B400E779FB /* ViewController */ = { | ||
142 | + isa = PBXGroup; | ||
143 | + children = ( | ||
144 | + 17058D51284A4F150078DD82 /* CodeVerificationViewController.swift */, | ||
145 | + ); | ||
146 | + path = ViewController; | ||
147 | + sourceTree = "<group>"; | ||
148 | + }; | ||
149 | + 00E581B7284F71A700E779FB /* Common */ = { | ||
150 | + isa = PBXGroup; | ||
151 | + children = ( | ||
152 | + 00E581B8284F71AE00E779FB /* CustomUI */, | ||
153 | + ); | ||
154 | + path = Common; | ||
155 | + sourceTree = "<group>"; | ||
156 | + }; | ||
157 | + 00E581B8284F71AE00E779FB /* CustomUI */ = { | ||
158 | + isa = PBXGroup; | ||
159 | + children = ( | ||
160 | + 00E581B9284F71B700E779FB /* Checkbox */, | ||
161 | + ); | ||
162 | + path = CustomUI; | ||
163 | + sourceTree = "<group>"; | ||
164 | + }; | ||
165 | + 00E581B9284F71B700E779FB /* Checkbox */ = { | ||
166 | + isa = PBXGroup; | ||
167 | + children = ( | ||
168 | + 00E581BA284F71CD00E779FB /* Checkbox.swift */, | ||
169 | + ); | ||
170 | + path = Checkbox; | ||
171 | + sourceTree = "<group>"; | ||
172 | + }; | ||
173 | + 17287C5E2848AC8800AA7113 /* Fonts + Extension */ = { | ||
174 | + isa = PBXGroup; | ||
175 | + children = ( | ||
176 | + 17287C5F2848AD8D00AA7113 /* Fonts + Extension.swift */, | ||
177 | + ); | ||
178 | + path = "Fonts + Extension"; | ||
179 | + sourceTree = "<group>"; | ||
180 | + }; | ||
181 | + 1738F7D42850F5A1003F1806 /* SettingsScreen */ = { | ||
182 | + isa = PBXGroup; | ||
183 | + children = ( | ||
184 | + 1738F7D62850F5C3003F1806 /* ViewController */, | ||
185 | + 1738F7D52850F5B5003F1806 /* View */, | ||
186 | + ); | ||
187 | + path = SettingsScreen; | ||
188 | + sourceTree = "<group>"; | ||
189 | + }; | ||
190 | + 1738F7D52850F5B5003F1806 /* View */ = { | ||
191 | + isa = PBXGroup; | ||
192 | + children = ( | ||
193 | + 1738F7D92850F5F1003F1806 /* SettingsView.swift */, | ||
194 | + 1738F7DB2850F980003F1806 /* ProfileView.swift */, | ||
195 | + 1778DA3D2850FF89006619C4 /* NotificationsView.swift */, | ||
196 | + 1778DA3F2851042F006619C4 /* EditInfoView.swift */, | ||
197 | + ); | ||
198 | + path = View; | ||
199 | + sourceTree = "<group>"; | ||
200 | + }; | ||
201 | + 1738F7D62850F5C3003F1806 /* ViewController */ = { | ||
202 | + isa = PBXGroup; | ||
203 | + children = ( | ||
204 | + 1738F7D72850F5D5003F1806 /* SettingsViewController.swift */, | ||
205 | + ); | ||
206 | + path = ViewController; | ||
207 | + sourceTree = "<group>"; | ||
208 | + }; | ||
209 | + 17ABFE54284FD1C8003B6959 /* HomeScreen */ = { | ||
210 | + isa = PBXGroup; | ||
211 | + children = ( | ||
212 | + 17ABFE55284FD1ED003B6959 /* ViewController */, | ||
213 | + 17ABFE56284FD1F5003B6959 /* VIew */, | ||
214 | + ); | ||
215 | + path = HomeScreen; | ||
216 | + sourceTree = "<group>"; | ||
217 | + }; | ||
218 | + 17ABFE55284FD1ED003B6959 /* ViewController */ = { | ||
219 | + isa = PBXGroup; | ||
220 | + children = ( | ||
221 | + 17ABFE57284FD20C003B6959 /* HomeViewController.swift */, | ||
222 | + ); | ||
223 | + path = ViewController; | ||
224 | + sourceTree = "<group>"; | ||
225 | + }; | ||
226 | + 17ABFE56284FD1F5003B6959 /* VIew */ = { | ||
227 | + isa = PBXGroup; | ||
228 | + children = ( | ||
229 | + 17ABFE59284FD293003B6959 /* HomeView.swift */, | ||
230 | + 178A61D02850DDAA001509A4 /* HomeTableViewCell.swift */, | ||
231 | + ); | ||
232 | + path = VIew; | ||
233 | + sourceTree = "<group>"; | ||
234 | + }; | ||
235 | + 17CF9ED42844ED8F000D8077 = { | ||
236 | + isa = PBXGroup; | ||
237 | + children = ( | ||
238 | + 17CF9EDF2844ED8F000D8077 /* InterQR-Internship */, | ||
239 | + 17287C5E2848AC8800AA7113 /* Fonts + Extension */, | ||
240 | + 17FD60D82848A2CE00957A3A /* Resources */, | ||
241 | + 17CF9EDE2844ED8F000D8077 /* Products */, | ||
242 | + 86273571ED5441E00D80DE37 /* Pods */, | ||
243 | + 35BE87303DBEEF43C5C2D917 /* Frameworks */, | ||
244 | + ); | ||
245 | + sourceTree = "<group>"; | ||
246 | + }; | ||
247 | + 17CF9EDE2844ED8F000D8077 /* Products */ = { | ||
248 | + isa = PBXGroup; | ||
249 | + children = ( | ||
250 | + 17CF9EDD2844ED8F000D8077 /* InterQR-Internship.app */, | ||
251 | + ); | ||
252 | + name = Products; | ||
253 | + sourceTree = "<group>"; | ||
254 | + }; | ||
255 | + 17CF9EDF2844ED8F000D8077 /* InterQR-Internship */ = { | ||
256 | + isa = PBXGroup; | ||
257 | + children = ( | ||
258 | + 00E581B7284F71A700E779FB /* Common */, | ||
259 | + 00E581B0284F666000E779FB /* Modules */, | ||
260 | + 17CF9EE02844ED8F000D8077 /* AppDelegate.swift */, | ||
261 | + 17CF9EE22844ED8F000D8077 /* SceneDelegate.swift */, | ||
262 | + 17CF9EE92844ED90000D8077 /* Assets.xcassets */, | ||
263 | + 17CF9EEB2844ED90000D8077 /* LaunchScreen.storyboard */, | ||
264 | + 17CF9EEE2844ED90000D8077 /* Info.plist */, | ||
265 | + 1729E21C28465162006C7C29 /* PhoneService.swift */, | ||
266 | + 1729E22028465DA9006C7C29 /* PhonePickerModel.swift */, | ||
267 | + ); | ||
268 | + path = "InterQR-Internship"; | ||
269 | + sourceTree = "<group>"; | ||
270 | + }; | ||
271 | + 17FD60D82848A2CE00957A3A /* Resources */ = { | ||
272 | + isa = PBXGroup; | ||
273 | + children = ( | ||
274 | + 17FD60D92848A56900957A3A /* Fonts */, | ||
275 | + ); | ||
276 | + path = Resources; | ||
277 | + sourceTree = "<group>"; | ||
278 | + }; | ||
279 | + 17FD60D92848A56900957A3A /* Fonts */ = { | ||
280 | + isa = PBXGroup; | ||
281 | + children = ( | ||
282 | + 17287C642848C69600AA7113 /* Sk-Modernist-Bold.otf */, | ||
283 | + 17287C682848C69600AA7113 /* Sk-Modernist-Mono.otf */, | ||
284 | + 17287C652848C69600AA7113 /* Sk-Modernist-Regular.otf */, | ||
285 | + ); | ||
286 | + path = Fonts; | ||
287 | + sourceTree = "<group>"; | ||
288 | + }; | ||
289 | + 35BE87303DBEEF43C5C2D917 /* Frameworks */ = { | ||
290 | + isa = PBXGroup; | ||
291 | + children = ( | ||
292 | + C7C589B3DBEEEE67D9D0AD2A /* Pods_InterQR_Internship.framework */, | ||
293 | + ); | ||
294 | + name = Frameworks; | ||
295 | + sourceTree = "<group>"; | ||
296 | + }; | ||
297 | + 86273571ED5441E00D80DE37 /* Pods */ = { | ||
298 | + isa = PBXGroup; | ||
299 | + children = ( | ||
300 | + 5DBC5918C180544DDA6F77E2 /* Pods-InterQR-Internship.debug.xcconfig */, | ||
301 | + 5BDBB5A6BD07C19C7C41277E /* Pods-InterQR-Internship.release.xcconfig */, | ||
302 | + ); | ||
303 | + path = Pods; | ||
304 | + sourceTree = "<group>"; | ||
305 | + }; | ||
306 | +/* End PBXGroup section */ | ||
307 | + | ||
308 | +/* Begin PBXNativeTarget section */ | ||
309 | + 17CF9EDC2844ED8F000D8077 /* InterQR-Internship */ = { | ||
310 | + isa = PBXNativeTarget; | ||
311 | + buildConfigurationList = 17CF9EF12844ED90000D8077 /* Build configuration list for PBXNativeTarget "InterQR-Internship" */; | ||
312 | + buildPhases = ( | ||
313 | + 02D597CE20BC23D36D22D265 /* [CP] Check Pods Manifest.lock */, | ||
314 | + 17CF9ED92844ED8F000D8077 /* Sources */, | ||
315 | + 17CF9EDA2844ED8F000D8077 /* Frameworks */, | ||
316 | + 17CF9EDB2844ED8F000D8077 /* Resources */, | ||
317 | + 156CBF425600953154887DB7 /* [CP] Embed Pods Frameworks */, | ||
318 | + ); | ||
319 | + buildRules = ( | ||
320 | + ); | ||
321 | + dependencies = ( | ||
322 | + ); | ||
323 | + name = "InterQR-Internship"; | ||
324 | + productName = "InterQR-Internship"; | ||
325 | + productReference = 17CF9EDD2844ED8F000D8077 /* InterQR-Internship.app */; | ||
326 | + productType = "com.apple.product-type.application"; | ||
327 | + }; | ||
328 | +/* End PBXNativeTarget section */ | ||
329 | + | ||
330 | +/* Begin PBXProject section */ | ||
331 | + 17CF9ED52844ED8F000D8077 /* Project object */ = { | ||
332 | + isa = PBXProject; | ||
333 | + attributes = { | ||
334 | + BuildIndependentTargetsInParallel = 1; | ||
335 | + LastSwiftUpdateCheck = 1300; | ||
336 | + LastUpgradeCheck = 1300; | ||
337 | + TargetAttributes = { | ||
338 | + 17CF9EDC2844ED8F000D8077 = { | ||
339 | + CreatedOnToolsVersion = 13.0; | ||
340 | + }; | ||
341 | + }; | ||
342 | + }; | ||
343 | + buildConfigurationList = 17CF9ED82844ED8F000D8077 /* Build configuration list for PBXProject "InterQR-Internship" */; | ||
344 | + compatibilityVersion = "Xcode 13.0"; | ||
345 | + developmentRegion = en; | ||
346 | + hasScannedForEncodings = 0; | ||
347 | + knownRegions = ( | ||
348 | + en, | ||
349 | + Base, | ||
350 | + ); | ||
351 | + mainGroup = 17CF9ED42844ED8F000D8077; | ||
352 | + productRefGroup = 17CF9EDE2844ED8F000D8077 /* Products */; | ||
353 | + projectDirPath = ""; | ||
354 | + projectRoot = ""; | ||
355 | + targets = ( | ||
356 | + 17CF9EDC2844ED8F000D8077 /* InterQR-Internship */, | ||
357 | + ); | ||
358 | + }; | ||
359 | +/* End PBXProject section */ | ||
360 | + | ||
361 | +/* Begin PBXResourcesBuildPhase section */ | ||
362 | + 17CF9EDB2844ED8F000D8077 /* Resources */ = { | ||
363 | + isa = PBXResourcesBuildPhase; | ||
364 | + buildActionMask = 2147483647; | ||
365 | + files = ( | ||
366 | + 17CF9EED2844ED90000D8077 /* LaunchScreen.storyboard in Resources */, | ||
367 | + 17287C6D2848C69600AA7113 /* Sk-Modernist-Mono.otf in Resources */, | ||
368 | + 17287C692848C69600AA7113 /* Sk-Modernist-Bold.otf in Resources */, | ||
369 | + 17287C6A2848C69600AA7113 /* Sk-Modernist-Regular.otf in Resources */, | ||
370 | + 17CF9EEA2844ED90000D8077 /* Assets.xcassets in Resources */, | ||
371 | + ); | ||
372 | + runOnlyForDeploymentPostprocessing = 0; | ||
373 | + }; | ||
374 | +/* End PBXResourcesBuildPhase section */ | ||
375 | + | ||
376 | +/* Begin PBXShellScriptBuildPhase section */ | ||
377 | + 02D597CE20BC23D36D22D265 /* [CP] Check Pods Manifest.lock */ = { | ||
378 | + isa = PBXShellScriptBuildPhase; | ||
379 | + buildActionMask = 2147483647; | ||
380 | + files = ( | ||
381 | + ); | ||
382 | + inputFileListPaths = ( | ||
383 | + ); | ||
384 | + inputPaths = ( | ||
385 | + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
386 | + "${PODS_ROOT}/Manifest.lock", | ||
387 | + ); | ||
388 | + name = "[CP] Check Pods Manifest.lock"; | ||
389 | + outputFileListPaths = ( | ||
390 | + ); | ||
391 | + outputPaths = ( | ||
392 | + "$(DERIVED_FILE_DIR)/Pods-InterQR-Internship-checkManifestLockResult.txt", | ||
393 | + ); | ||
394 | + runOnlyForDeploymentPostprocessing = 0; | ||
395 | + shellPath = /bin/sh; | ||
396 | + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | ||
397 | + showEnvVarsInLog = 0; | ||
398 | + }; | ||
399 | + 156CBF425600953154887DB7 /* [CP] Embed Pods Frameworks */ = { | ||
400 | + isa = PBXShellScriptBuildPhase; | ||
401 | + buildActionMask = 2147483647; | ||
402 | + files = ( | ||
403 | + ); | ||
404 | + inputFileListPaths = ( | ||
405 | + "${PODS_ROOT}/Target Support Files/Pods-InterQR-Internship/Pods-InterQR-Internship-frameworks-${CONFIGURATION}-input-files.xcfilelist", | ||
406 | + ); | ||
407 | + name = "[CP] Embed Pods Frameworks"; | ||
408 | + outputFileListPaths = ( | ||
409 | + "${PODS_ROOT}/Target Support Files/Pods-InterQR-Internship/Pods-InterQR-Internship-frameworks-${CONFIGURATION}-output-files.xcfilelist", | ||
410 | + ); | ||
411 | + runOnlyForDeploymentPostprocessing = 0; | ||
412 | + shellPath = /bin/sh; | ||
413 | + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-InterQR-Internship/Pods-InterQR-Internship-frameworks.sh\"\n"; | ||
414 | + showEnvVarsInLog = 0; | ||
415 | + }; | ||
416 | +/* End PBXShellScriptBuildPhase section */ | ||
417 | + | ||
418 | +/* Begin PBXSourcesBuildPhase section */ | ||
419 | + 17CF9ED92844ED8F000D8077 /* Sources */ = { | ||
420 | + isa = PBXSourcesBuildPhase; | ||
421 | + buildActionMask = 2147483647; | ||
422 | + files = ( | ||
423 | + 1729E22128465DA9006C7C29 /* PhonePickerModel.swift in Sources */, | ||
424 | + 17058D52284A4F150078DD82 /* CodeVerificationViewController.swift in Sources */, | ||
425 | + 1778DA402851042F006619C4 /* EditInfoView.swift in Sources */, | ||
426 | + 1732AC71284769B50042C9F7 /* TextFieldWithPadding.swift in Sources */, | ||
427 | + 17ABFE5A284FD293003B6959 /* HomeView.swift in Sources */, | ||
428 | + 1732AC7328477BB40042C9F7 /* PickerViewCell.swift in Sources */, | ||
429 | + 1729E21F28465595006C7C29 /* PhoneNumberView.swift in Sources */, | ||
430 | + 17ABFE58284FD20C003B6959 /* HomeViewController.swift in Sources */, | ||
431 | + 17CF9EE52844ED8F000D8077 /* VerificationViewController.swift in Sources */, | ||
432 | + 17058D54284A4F670078DD82 /* CodeVerificationView.swift in Sources */, | ||
433 | + 17CF9EE12844ED8F000D8077 /* AppDelegate.swift in Sources */, | ||
434 | + 1729E21D28465163006C7C29 /* PhoneService.swift in Sources */, | ||
435 | + 1778DA3E2850FF89006619C4 /* NotificationsView.swift in Sources */, | ||
436 | + 17CF9EE32844ED8F000D8077 /* SceneDelegate.swift in Sources */, | ||
437 | + 1738F7D82850F5D5003F1806 /* SettingsViewController.swift in Sources */, | ||
438 | + 1738F7DA2850F5F1003F1806 /* SettingsView.swift in Sources */, | ||
439 | + 00E581BB284F71CD00E779FB /* Checkbox.swift in Sources */, | ||
440 | + 17287C602848AD8D00AA7113 /* Fonts + Extension.swift in Sources */, | ||
441 | + 1738F7DC2850F980003F1806 /* ProfileView.swift in Sources */, | ||
442 | + 178A61D12850DDAA001509A4 /* HomeTableViewCell.swift in Sources */, | ||
443 | + 17CF9EF72844EF8B000D8077 /* VerificationView.swift in Sources */, | ||
444 | + ); | ||
445 | + runOnlyForDeploymentPostprocessing = 0; | ||
446 | + }; | ||
447 | +/* End PBXSourcesBuildPhase section */ | ||
448 | + | ||
449 | +/* Begin PBXVariantGroup section */ | ||
450 | + 17CF9EEB2844ED90000D8077 /* LaunchScreen.storyboard */ = { | ||
451 | + isa = PBXVariantGroup; | ||
452 | + children = ( | ||
453 | + 17CF9EEC2844ED90000D8077 /* Base */, | ||
454 | + ); | ||
455 | + name = LaunchScreen.storyboard; | ||
456 | + sourceTree = "<group>"; | ||
457 | + }; | ||
458 | +/* End PBXVariantGroup section */ | ||
459 | + | ||
460 | +/* Begin XCBuildConfiguration section */ | ||
461 | + 17CF9EEF2844ED90000D8077 /* Debug */ = { | ||
462 | + isa = XCBuildConfiguration; | ||
463 | + buildSettings = { | ||
464 | + ALWAYS_SEARCH_USER_PATHS = NO; | ||
465 | + CLANG_ANALYZER_NONNULL = YES; | ||
466 | + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
467 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; | ||
468 | + CLANG_CXX_LIBRARY = "libc++"; | ||
469 | + CLANG_ENABLE_MODULES = YES; | ||
470 | + CLANG_ENABLE_OBJC_ARC = YES; | ||
471 | + CLANG_ENABLE_OBJC_WEAK = YES; | ||
472 | + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
473 | + CLANG_WARN_BOOL_CONVERSION = YES; | ||
474 | + CLANG_WARN_COMMA = YES; | ||
475 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
476 | + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
477 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
478 | + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
479 | + CLANG_WARN_EMPTY_BODY = YES; | ||
480 | + CLANG_WARN_ENUM_CONVERSION = YES; | ||
481 | + CLANG_WARN_INFINITE_RECURSION = YES; | ||
482 | + CLANG_WARN_INT_CONVERSION = YES; | ||
483 | + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
484 | + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
485 | + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
486 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
487 | + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
488 | + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
489 | + CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
490 | + CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
491 | + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
492 | + CLANG_WARN_UNREACHABLE_CODE = YES; | ||
493 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
494 | + COPY_PHASE_STRIP = NO; | ||
495 | + DEBUG_INFORMATION_FORMAT = dwarf; | ||
496 | + ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
497 | + ENABLE_TESTABILITY = YES; | ||
498 | + GCC_C_LANGUAGE_STANDARD = gnu11; | ||
499 | + GCC_DYNAMIC_NO_PIC = NO; | ||
500 | + GCC_NO_COMMON_BLOCKS = YES; | ||
501 | + GCC_OPTIMIZATION_LEVEL = 0; | ||
502 | + GCC_PREPROCESSOR_DEFINITIONS = ( | ||
503 | + "DEBUG=1", | ||
504 | + "$(inherited)", | ||
505 | + ); | ||
506 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
507 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
508 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
509 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
510 | + GCC_WARN_UNUSED_FUNCTION = YES; | ||
511 | + GCC_WARN_UNUSED_VARIABLE = YES; | ||
512 | + IPHONEOS_DEPLOYMENT_TARGET = 13.0; | ||
513 | + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | ||
514 | + MTL_FAST_MATH = YES; | ||
515 | + ONLY_ACTIVE_ARCH = YES; | ||
516 | + SDKROOT = iphoneos; | ||
517 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; | ||
518 | + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
519 | + }; | ||
520 | + name = Debug; | ||
521 | + }; | ||
522 | + 17CF9EF02844ED90000D8077 /* Release */ = { | ||
523 | + isa = XCBuildConfiguration; | ||
524 | + buildSettings = { | ||
525 | + ALWAYS_SEARCH_USER_PATHS = NO; | ||
526 | + CLANG_ANALYZER_NONNULL = YES; | ||
527 | + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
528 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; | ||
529 | + CLANG_CXX_LIBRARY = "libc++"; | ||
530 | + CLANG_ENABLE_MODULES = YES; | ||
531 | + CLANG_ENABLE_OBJC_ARC = YES; | ||
532 | + CLANG_ENABLE_OBJC_WEAK = YES; | ||
533 | + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
534 | + CLANG_WARN_BOOL_CONVERSION = YES; | ||
535 | + CLANG_WARN_COMMA = YES; | ||
536 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
537 | + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
538 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
539 | + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
540 | + CLANG_WARN_EMPTY_BODY = YES; | ||
541 | + CLANG_WARN_ENUM_CONVERSION = YES; | ||
542 | + CLANG_WARN_INFINITE_RECURSION = YES; | ||
543 | + CLANG_WARN_INT_CONVERSION = YES; | ||
544 | + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
545 | + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
546 | + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
547 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
548 | + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
549 | + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
550 | + CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
551 | + CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
552 | + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
553 | + CLANG_WARN_UNREACHABLE_CODE = YES; | ||
554 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
555 | + COPY_PHASE_STRIP = NO; | ||
556 | + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | ||
557 | + ENABLE_NS_ASSERTIONS = NO; | ||
558 | + ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
559 | + GCC_C_LANGUAGE_STANDARD = gnu11; | ||
560 | + GCC_NO_COMMON_BLOCKS = YES; | ||
561 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
562 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
563 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
564 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
565 | + GCC_WARN_UNUSED_FUNCTION = YES; | ||
566 | + GCC_WARN_UNUSED_VARIABLE = YES; | ||
567 | + IPHONEOS_DEPLOYMENT_TARGET = 13.0; | ||
568 | + MTL_ENABLE_DEBUG_INFO = NO; | ||
569 | + MTL_FAST_MATH = YES; | ||
570 | + SDKROOT = iphoneos; | ||
571 | + SWIFT_COMPILATION_MODE = wholemodule; | ||
572 | + SWIFT_OPTIMIZATION_LEVEL = "-O"; | ||
573 | + VALIDATE_PRODUCT = YES; | ||
574 | + }; | ||
575 | + name = Release; | ||
576 | + }; | ||
577 | + 17CF9EF22844ED90000D8077 /* Debug */ = { | ||
578 | + isa = XCBuildConfiguration; | ||
579 | + baseConfigurationReference = 5DBC5918C180544DDA6F77E2 /* Pods-InterQR-Internship.debug.xcconfig */; | ||
580 | + buildSettings = { | ||
581 | + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
582 | + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; | ||
583 | + CODE_SIGN_IDENTITY = "Apple Development"; | ||
584 | + CODE_SIGN_STYLE = Automatic; | ||
585 | + CURRENT_PROJECT_VERSION = 1; | ||
586 | + DEVELOPMENT_TEAM = 4X46JG9W6V; | ||
587 | + GENERATE_INFOPLIST_FILE = YES; | ||
588 | + INFOPLIST_FILE = "InterQR-Internship/Info.plist"; | ||
589 | + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; | ||
590 | + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; | ||
591 | + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; | ||
592 | + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; | ||
593 | + LD_RUNPATH_SEARCH_PATHS = ( | ||
594 | + "$(inherited)", | ||
595 | + "@executable_path/Frameworks", | ||
596 | + ); | ||
597 | + MARKETING_VERSION = 1.0; | ||
598 | + PRODUCT_BUNDLE_IDENTIFIER = "com.TDY13.InterQR-Internship"; | ||
599 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
600 | + PROVISIONING_PROFILE_SPECIFIER = ""; | ||
601 | + SWIFT_EMIT_LOC_STRINGS = YES; | ||
602 | + SWIFT_VERSION = 5.0; | ||
603 | + TARGETED_DEVICE_FAMILY = 1; | ||
604 | + }; | ||
605 | + name = Debug; | ||
606 | + }; | ||
607 | + 17CF9EF32844ED90000D8077 /* Release */ = { | ||
608 | + isa = XCBuildConfiguration; | ||
609 | + baseConfigurationReference = 5BDBB5A6BD07C19C7C41277E /* Pods-InterQR-Internship.release.xcconfig */; | ||
610 | + buildSettings = { | ||
611 | + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
612 | + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; | ||
613 | + CODE_SIGN_STYLE = Automatic; | ||
614 | + CURRENT_PROJECT_VERSION = 1; | ||
615 | + DEVELOPMENT_TEAM = 4X46JG9W6V; | ||
616 | + GENERATE_INFOPLIST_FILE = YES; | ||
617 | + INFOPLIST_FILE = "InterQR-Internship/Info.plist"; | ||
618 | + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; | ||
619 | + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; | ||
620 | + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; | ||
621 | + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; | ||
622 | + LD_RUNPATH_SEARCH_PATHS = ( | ||
623 | + "$(inherited)", | ||
624 | + "@executable_path/Frameworks", | ||
625 | + ); | ||
626 | + MARKETING_VERSION = 1.0; | ||
627 | + PRODUCT_BUNDLE_IDENTIFIER = "com.TDY13.InterQR-Internship"; | ||
628 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
629 | + SWIFT_EMIT_LOC_STRINGS = YES; | ||
630 | + SWIFT_VERSION = 5.0; | ||
631 | + TARGETED_DEVICE_FAMILY = 1; | ||
632 | + }; | ||
633 | + name = Release; | ||
634 | + }; | ||
635 | +/* End XCBuildConfiguration section */ | ||
636 | + | ||
637 | +/* Begin XCConfigurationList section */ | ||
638 | + 17CF9ED82844ED8F000D8077 /* Build configuration list for PBXProject "InterQR-Internship" */ = { | ||
639 | + isa = XCConfigurationList; | ||
640 | + buildConfigurations = ( | ||
641 | + 17CF9EEF2844ED90000D8077 /* Debug */, | ||
642 | + 17CF9EF02844ED90000D8077 /* Release */, | ||
643 | + ); | ||
644 | + defaultConfigurationIsVisible = 0; | ||
645 | + defaultConfigurationName = Release; | ||
646 | + }; | ||
647 | + 17CF9EF12844ED90000D8077 /* Build configuration list for PBXNativeTarget "InterQR-Internship" */ = { | ||
648 | + isa = XCConfigurationList; | ||
649 | + buildConfigurations = ( | ||
650 | + 17CF9EF22844ED90000D8077 /* Debug */, | ||
651 | + 17CF9EF32844ED90000D8077 /* Release */, | ||
652 | + ); | ||
653 | + defaultConfigurationIsVisible = 0; | ||
654 | + defaultConfigurationName = Release; | ||
655 | + }; | ||
656 | +/* End XCConfigurationList section */ | ||
657 | + }; | ||
658 | + rootObject = 17CF9ED52844ED8F000D8077 /* Project object */; | ||
659 | +} |
InterQR-Internship.xcodeproj/xcuserdata/leyter.xcuserdatad/xcschemes/xcschememanagement.plist
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | +<plist version="1.0"> | ||
4 | +<dict> | ||
5 | + <key>SchemeUserState</key> | ||
6 | + <dict> | ||
7 | + <key>InterQR-Internship.xcscheme_^#shared#^_</key> | ||
8 | + <dict> | ||
9 | + <key>orderHint</key> | ||
10 | + <integer>2</integer> | ||
11 | + </dict> | ||
12 | + </dict> | ||
13 | +</dict> | ||
14 | +</plist> |
InterQR-Internship.xcodeproj/xcuserdata/tdy_13.xcuserdatad/xcschemes/xcschememanagement.plist
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | +<plist version="1.0"> | ||
4 | +<dict> | ||
5 | + <key>SchemeUserState</key> | ||
6 | + <dict> | ||
7 | + <key>InterQR-Internship.xcscheme_^#shared#^_</key> | ||
8 | + <dict> | ||
9 | + <key>orderHint</key> | ||
10 | + <integer>2</integer> | ||
11 | + </dict> | ||
12 | + </dict> | ||
13 | +</dict> | ||
14 | +</plist> |
InterQR-Internship.xcworkspace/xcuserdata/leyter.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<Bucket | ||
3 | + uuid = "369C53C4-55C8-4418-98C6-B9B8FCA67812" | ||
4 | + type = "0" | ||
5 | + version = "2.0"> | ||
6 | + <Breakpoints> | ||
7 | + <BreakpointProxy | ||
8 | + BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> | ||
9 | + <BreakpointContent | ||
10 | + uuid = "24C8FE5B-99CC-430C-9B8A-90948FD44A96" | ||
11 | + shouldBeEnabled = "No" | ||
12 | + ignoreCount = "0" | ||
13 | + continueAfterRunningActions = "No" | ||
14 | + filePath = "InterQR-Internship/Modules/VerificationSceen/ViewController/VerificationViewController.swift" | ||
15 | + startingColumnNumber = "9223372036854775807" | ||
16 | + endingColumnNumber = "9223372036854775807" | ||
17 | + startingLineNumber = "117" | ||
18 | + endingLineNumber = "117" | ||
19 | + landmarkName = "keyboardWillHide(notification:)" | ||
20 | + landmarkType = "7"> | ||
21 | + </BreakpointContent> | ||
22 | + </BreakpointProxy> | ||
23 | + </Breakpoints> | ||
24 | +</Bucket> |
InterQR-Internship/AppDelegate.swift
0 → 100644
1 | +// | ||
2 | +// AppDelegate.swift | ||
3 | +// InterQR-Internship | ||
4 | +// | ||
5 | +// Created by Дмитрий Тимофеев on 30.05.2022. | ||
6 | +// | ||
7 | + | ||
8 | +import UIKit | ||
9 | + | ||
10 | +@main | ||
11 | +class AppDelegate: UIResponder, UIApplicationDelegate { | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | ||
16 | + // Override point for customization after application launch. | ||
17 | + return true | ||
18 | + } | ||
19 | + | ||
20 | + // MARK: UISceneSession Lifecycle | ||
21 | + | ||
22 | + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { | ||
23 | + // Called when a new scene session is being created. | ||
24 | + // Use this method to select a configuration to create the new scene with. | ||
25 | + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) | ||
26 | + } | ||
27 | + | ||
28 | + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) { | ||
29 | + // Called when the user discards a scene session. | ||
30 | + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. | ||
31 | + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. | ||
32 | + } | ||
33 | + | ||
34 | + | ||
35 | +} | ||
36 | + |
14.9 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "AUS.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "idiom" : "universal", | ||
10 | + "scale" : "2x" | ||
11 | + }, | ||
12 | + { | ||
13 | + "idiom" : "universal", | ||
14 | + "scale" : "3x" | ||
15 | + } | ||
16 | + ], | ||
17 | + "info" : { | ||
18 | + "author" : "xcode", | ||
19 | + "version" : 1 | ||
20 | + } | ||
21 | +} |
1 | +{ | ||
2 | + "colors" : [ | ||
3 | + { | ||
4 | + "color" : { | ||
5 | + "color-space" : "srgb", | ||
6 | + "components" : { | ||
7 | + "alpha" : "1.000", | ||
8 | + "blue" : "1.000", | ||
9 | + "green" : "1.000", | ||
10 | + "red" : "1.000" | ||
11 | + } | ||
12 | + }, | ||
13 | + "idiom" : "universal" | ||
14 | + }, | ||
15 | + { | ||
16 | + "appearances" : [ | ||
17 | + { | ||
18 | + "appearance" : "luminosity", | ||
19 | + "value" : "dark" | ||
20 | + } | ||
21 | + ], | ||
22 | + "color" : { | ||
23 | + "color-space" : "srgb", | ||
24 | + "components" : { | ||
25 | + "alpha" : "1.000", | ||
26 | + "blue" : "1.000", | ||
27 | + "green" : "1.000", | ||
28 | + "red" : "1.000" | ||
29 | + } | ||
30 | + }, | ||
31 | + "idiom" : "universal" | ||
32 | + } | ||
33 | + ], | ||
34 | + "info" : { | ||
35 | + "author" : "xcode", | ||
36 | + "version" : 1 | ||
37 | + } | ||
38 | +} |
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "idiom" : "iphone", | ||
5 | + "scale" : "2x", | ||
6 | + "size" : "20x20" | ||
7 | + }, | ||
8 | + { | ||
9 | + "idiom" : "iphone", | ||
10 | + "scale" : "3x", | ||
11 | + "size" : "20x20" | ||
12 | + }, | ||
13 | + { | ||
14 | + "idiom" : "iphone", | ||
15 | + "scale" : "2x", | ||
16 | + "size" : "29x29" | ||
17 | + }, | ||
18 | + { | ||
19 | + "idiom" : "iphone", | ||
20 | + "scale" : "3x", | ||
21 | + "size" : "29x29" | ||
22 | + }, | ||
23 | + { | ||
24 | + "idiom" : "iphone", | ||
25 | + "scale" : "2x", | ||
26 | + "size" : "40x40" | ||
27 | + }, | ||
28 | + { | ||
29 | + "idiom" : "iphone", | ||
30 | + "scale" : "3x", | ||
31 | + "size" : "40x40" | ||
32 | + }, | ||
33 | + { | ||
34 | + "idiom" : "iphone", | ||
35 | + "scale" : "2x", | ||
36 | + "size" : "60x60" | ||
37 | + }, | ||
38 | + { | ||
39 | + "idiom" : "iphone", | ||
40 | + "scale" : "3x", | ||
41 | + "size" : "60x60" | ||
42 | + }, | ||
43 | + { | ||
44 | + "idiom" : "ipad", | ||
45 | + "scale" : "1x", | ||
46 | + "size" : "20x20" | ||
47 | + }, | ||
48 | + { | ||
49 | + "idiom" : "ipad", | ||
50 | + "scale" : "2x", | ||
51 | + "size" : "20x20" | ||
52 | + }, | ||
53 | + { | ||
54 | + "idiom" : "ipad", | ||
55 | + "scale" : "1x", | ||
56 | + "size" : "29x29" | ||
57 | + }, | ||
58 | + { | ||
59 | + "idiom" : "ipad", | ||
60 | + "scale" : "2x", | ||
61 | + "size" : "29x29" | ||
62 | + }, | ||
63 | + { | ||
64 | + "idiom" : "ipad", | ||
65 | + "scale" : "1x", | ||
66 | + "size" : "40x40" | ||
67 | + }, | ||
68 | + { | ||
69 | + "idiom" : "ipad", | ||
70 | + "scale" : "2x", | ||
71 | + "size" : "40x40" | ||
72 | + }, | ||
73 | + { | ||
74 | + "idiom" : "ipad", | ||
75 | + "scale" : "1x", | ||
76 | + "size" : "76x76" | ||
77 | + }, | ||
78 | + { | ||
79 | + "idiom" : "ipad", | ||
80 | + "scale" : "2x", | ||
81 | + "size" : "76x76" | ||
82 | + }, | ||
83 | + { | ||
84 | + "idiom" : "ipad", | ||
85 | + "scale" : "2x", | ||
86 | + "size" : "83.5x83.5" | ||
87 | + }, | ||
88 | + { | ||
89 | + "idiom" : "ios-marketing", | ||
90 | + "scale" : "1x", | ||
91 | + "size" : "1024x1024" | ||
92 | + } | ||
93 | + ], | ||
94 | + "info" : { | ||
95 | + "author" : "xcode", | ||
96 | + "version" : 1 | ||
97 | + } | ||
98 | +} |
414 Bytes
580 Bytes
239 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "BackPointer.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Arrow - Left 2@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Arrow - Left 2@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Edit.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Edit@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Edit@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
649 Bytes
1.33 KB
2.2 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "FlagPointer.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Stroke 1@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Stroke 1@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
251 Bytes
287 Bytes
343 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "GB.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "icons8-великобритания-48.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "icons8-великобритания-96.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
871 Bytes
1.98 KB
4.07 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Gear.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Setting@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Setting@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
14.5 KB
45.5 KB
92.2 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Gradient.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Rectangle 6@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Rectangle 6@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
6.77 KB
28.6 KB
54.8 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Home.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Home@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Home@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
19.2 KB
62 KB
126 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "InterQR.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Group 33497-2.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Group 33497-3.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
3.84 KB
6.25 KB
1.83 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "LeftBlue.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Group 33668@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Group 33668@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
13.3 KB
2.41 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Lock.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Lock@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Lock@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
21.5 KB
71.8 KB
151 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "NextPointer.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Stroke 3@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Stroke 3@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
221 Bytes
343 Bytes
450 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Notification.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Notification@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Notification@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
638 Bytes
1.25 KB
2.15 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "OffIndicator.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Ellipse 1@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Ellipse 1@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
1.23 KB
1.75 KB
602 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "OnIndicator.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Group 1@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Group 1@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
1.01 KB
1.43 KB
567 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Password.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Password@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Password@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
569 Bytes
1.05 KB
1.57 KB
756 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Pointer.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Arrow - Right Circle@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Arrow - Right Circle@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
417 Bytes
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "Profile.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Profile@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Profile@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
646 Bytes
1.44 KB
2.31 KB
2.97 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "8D57D412-3800-4D7C-922A-FF392EC0594E_4_5005_c.jpeg", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Rectangle@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Rectangle@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
82.5 KB
182 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "RectangleWithShadow.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Rectangle@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Rectangle@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
34.6 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "RightBlue.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Group 33606@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Group 33606@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
3.99 KB
6.8 KB
1.78 KB
1 | +{ | ||
2 | + "images" : [ | ||
3 | + { | ||
4 | + "filename" : "RightYellow.png", | ||
5 | + "idiom" : "universal", | ||
6 | + "scale" : "1x" | ||
7 | + }, | ||
8 | + { | ||
9 | + "filename" : "Group 33607@2x.png", | ||
10 | + "idiom" : "universal", | ||
11 | + "scale" : "2x" | ||
12 | + }, | ||
13 | + { | ||
14 | + "filename" : "Group 33607@3x.png", | ||
15 | + "idiom" : "universal", | ||
16 | + "scale" : "3x" | ||
17 | + } | ||
18 | + ], | ||
19 | + "info" : { | ||
20 | + "author" : "xcode", | ||
21 | + "version" : 1 | ||
22 | + } | ||
23 | +} |
2.28 KB
Please
register
or
login
to post a comment