Skip to content

Commit fe00c5e

Browse files
committed
resolved conflicts
2 parents 2a6f31d + ebf8fff commit fe00c5e

22 files changed

Lines changed: 1352 additions & 278 deletions

File tree

AnimalsApp/AnimalsApp.xcodeproj/project.pbxproj

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/* Begin PBXBuildFile section */
1010
432FDDFDC9779A196A20F261 /* Pods_AnimalsApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D1DC7AE05F709A3F0E450DA /* Pods_AnimalsApp.framework */; };
1111
56CADB59A535B3ED60380013 /* Pods_AnimalsApp_AnimalsAppUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1E75A013A1B19FF9D2B114B /* Pods_AnimalsApp_AnimalsAppUITests.framework */; };
12+
5CA996F8285A98FB00FF5D79 /* RegisterViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CA996F7285A98FB00FF5D79 /* RegisterViewModel.swift */; };
1213
A2A6AE83CC0E1DAC784999B1 /* Pods_AnimalsAppTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 290D574622CE042567539136 /* Pods_AnimalsAppTests.framework */; };
1314
A463D0172858EBBB00929A3C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A463D0162858EBBB00929A3C /* AppDelegate.swift */; };
1415
A463D0212858EBBB00929A3C /* AnimalsApp.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = A463D01F2858EBBB00929A3C /* AnimalsApp.xcdatamodeld */; };
@@ -35,6 +36,8 @@
3536
A463D074285A398900929A3C /* HomeViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A463D073285A398900929A3C /* HomeViewModel.swift */; };
3637
A463D078285A5A8000929A3C /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A463D077285A5A8000929A3C /* OpenSans-Regular.ttf */; };
3738
A463D07C285B9B6300929A3C /* CoreData.swift in Sources */ = {isa = PBXBuildFile; fileRef = A463D07B285B9B6300929A3C /* CoreData.swift */; };
39+
A463D07A285B8D8E00929A3C /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = A463D079285B8D8D00929A3C /* Colors.swift */; };
40+
A463D07E285CF28200929A3C /* String.swift in Sources */ = {isa = PBXBuildFile; fileRef = A463D07D285CF28200929A3C /* String.swift */; };
3841
/* End PBXBuildFile section */
3942

4043
/* Begin PBXContainerItemProxy section */
@@ -59,6 +62,7 @@
5962
2DCF7719AB858998955D44F5 /* Pods-AnimalsApp-AnimalsAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimalsApp-AnimalsAppUITests.release.xcconfig"; path = "Target Support Files/Pods-AnimalsApp-AnimalsAppUITests/Pods-AnimalsApp-AnimalsAppUITests.release.xcconfig"; sourceTree = "<group>"; };
6063
4DF5AC84080C5CAD4EFD22DD /* Pods-AnimalsApp-AnimalsAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimalsApp-AnimalsAppUITests.debug.xcconfig"; path = "Target Support Files/Pods-AnimalsApp-AnimalsAppUITests/Pods-AnimalsApp-AnimalsAppUITests.debug.xcconfig"; sourceTree = "<group>"; };
6164
5955E4FFC7C4BE50ACCA87B4 /* Pods-AnimalsApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimalsApp.debug.xcconfig"; path = "Target Support Files/Pods-AnimalsApp/Pods-AnimalsApp.debug.xcconfig"; sourceTree = "<group>"; };
65+
5CA996F7285A98FB00FF5D79 /* RegisterViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterViewModel.swift; sourceTree = "<group>"; };
6266
7B390F83513FC642B7BEDAF0 /* Pods-AnimalsAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimalsAppTests.release.xcconfig"; path = "Target Support Files/Pods-AnimalsAppTests/Pods-AnimalsAppTests.release.xcconfig"; sourceTree = "<group>"; };
6367
7B6C2810AB19D2F9FE7AD5CF /* Pods-AnimalsApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimalsApp.release.xcconfig"; path = "Target Support Files/Pods-AnimalsApp/Pods-AnimalsApp.release.xcconfig"; sourceTree = "<group>"; };
6468
81C9DABDE310C2E15910D06C /* Pods-AnimalsAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimalsAppTests.debug.xcconfig"; path = "Target Support Files/Pods-AnimalsAppTests/Pods-AnimalsAppTests.debug.xcconfig"; sourceTree = "<group>"; };
@@ -93,6 +97,8 @@
9397
A463D073285A398900929A3C /* HomeViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewModel.swift; sourceTree = "<group>"; };
9498
A463D077285A5A8000929A3C /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "OpenSans-Regular.ttf"; sourceTree = "<group>"; };
9599
A463D07B285B9B6300929A3C /* CoreData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreData.swift; sourceTree = "<group>"; };
100+
A463D079285B8D8D00929A3C /* Colors.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Colors.swift; sourceTree = "<group>"; };
101+
A463D07D285CF28200929A3C /* String.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = String.swift; sourceTree = "<group>"; };
96102
/* End PBXFileReference section */
97103

98104
/* Begin PBXFrameworksBuildPhase section */
@@ -204,7 +210,6 @@
204210
A463D04E2858F47C00929A3C /* HomeViewController */ = {
205211
isa = PBXGroup;
206212
children = (
207-
A463D075285A580400929A3C /* Components */,
208213
A463D0512858F60C00929A3C /* HomeViewController.swift */,
209214
A463D0522858F60C00929A3C /* HomeViewController.xib */,
210215
);
@@ -232,6 +237,7 @@
232237
A463D05F2858F66B00929A3C /* Views */ = {
233238
isa = PBXGroup;
234239
children = (
240+
A463D075285A580400929A3C /* Components */,
235241
A463D06A285A22AF00929A3C /* DetailViewController */,
236242
A463D0502858F4DE00929A3C /* FavoritesViewController */,
237243
A463D04F2858F49600929A3C /* RegisterViewController */,
@@ -245,6 +251,8 @@
245251
isa = PBXGroup;
246252
children = (
247253
A463D06128590D0300929A3C /* Images.swift */,
254+
A463D079285B8D8D00929A3C /* Colors.swift */,
255+
A463D07D285CF28200929A3C /* String.swift */,
248256
);
249257
path = DesignSystem;
250258
sourceTree = "<group>";
@@ -280,6 +288,7 @@
280288
isa = PBXGroup;
281289
children = (
282290
A463D073285A398900929A3C /* HomeViewModel.swift */,
291+
5CA996F7285A98FB00FF5D79 /* RegisterViewModel.swift */,
283292
);
284293
path = "View Models";
285294
sourceTree = "<group>";
@@ -565,8 +574,11 @@
565574
A463D071285A373800929A3C /* Animals.swift in Sources */,
566575
A463D04B2858F39000929A3C /* MainTabBarController.swift in Sources */,
567576
A463D074285A398900929A3C /* HomeViewModel.swift in Sources */,
577+
A463D07A285B8D8E00929A3C /* Colors.swift in Sources */,
578+
5CA996F8285A98FB00FF5D79 /* RegisterViewModel.swift in Sources */,
568579
A463D05D2858F64B00929A3C /* FavoritesViewController.swift in Sources */,
569580
A463D06D285A22D200929A3C /* DetailViewController.swift in Sources */,
581+
A463D07E285CF28200929A3C /* String.swift in Sources */,
570582
A463D069285A1A5A00929A3C /* WebServices.swift in Sources */,
571583
A463D0532858F60C00929A3C /* HomeViewController.swift in Sources */,
572584
);

0 commit comments

Comments
 (0)