Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Luizmello/contacts app #1

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
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
86 changes: 82 additions & 4 deletions Swift Code Challenge.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
1E05E8E02868F16400B12456 /* Swift_Code_ChallengeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E05E8DF2868F16400B12456 /* Swift_Code_ChallengeTests.swift */; };
1E05E8EA2868F16400B12456 /* Swift_Code_ChallengeUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E05E8E92868F16400B12456 /* Swift_Code_ChallengeUITests.swift */; };
1E05E8EC2868F16400B12456 /* Swift_Code_ChallengeUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E05E8EB2868F16400B12456 /* Swift_Code_ChallengeUITestsLaunchTests.swift */; };
384EB99B286D00F200A2FE3C /* UsersListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384EB99A286D00F200A2FE3C /* UsersListView.swift */; };
384EB99F286DC53A00A2FE3C /* UserDetailsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384EB99E286DC53A00A2FE3C /* UserDetailsView.swift */; };
384EB9A1286DC56E00A2FE3C /* MapView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384EB9A0286DC56E00A2FE3C /* MapView.swift */; };
384EB9A4286DC5BC00A2FE3C /* VisualEffectsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384EB9A3286DC5BC00A2FE3C /* VisualEffectsView.swift */; };
384EB9A6286DC5EB00A2FE3C /* CircleImageComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384EB9A5286DC5EB00A2FE3C /* CircleImageComponent.swift */; };
388650AE286CEF6E009A16EA /* UserModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388650AD286CEF6E009A16EA /* UserModel.swift */; };
3889CF77286E2EC00047D955 /* ApiRequestAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3889CF76286E2EC00047D955 /* ApiRequestAsync.swift */; };
3889CF79286E2FE80047D955 /* UsersListViewModelAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3889CF78286E2FE80047D955 /* UsersListViewModelAsync.swift */; };
3889CF7B286E31BA0047D955 /* TestAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3889CF7A286E31BA0047D955 /* TestAsync.swift */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -45,6 +54,16 @@
1E05E8E92868F16400B12456 /* Swift_Code_ChallengeUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Swift_Code_ChallengeUITests.swift; sourceTree = "<group>"; };
1E05E8EB2868F16400B12456 /* Swift_Code_ChallengeUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Swift_Code_ChallengeUITestsLaunchTests.swift; sourceTree = "<group>"; };
1E05E8F82868F24600B12456 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
384EB99A286D00F200A2FE3C /* UsersListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UsersListView.swift; sourceTree = "<group>"; };
384EB99E286DC53A00A2FE3C /* UserDetailsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDetailsView.swift; sourceTree = "<group>"; };
384EB9A0286DC56E00A2FE3C /* MapView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MapView.swift; sourceTree = "<group>"; };
384EB9A3286DC5BC00A2FE3C /* VisualEffectsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VisualEffectsView.swift; sourceTree = "<group>"; };
384EB9A5286DC5EB00A2FE3C /* CircleImageComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CircleImageComponent.swift; sourceTree = "<group>"; };
384EB9A7286DCA4C00A2FE3C /* Swift-Code-Challenge-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "Swift-Code-Challenge-Info.plist"; sourceTree = SOURCE_ROOT; };
388650AD286CEF6E009A16EA /* UserModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserModel.swift; sourceTree = "<group>"; };
3889CF76286E2EC00047D955 /* ApiRequestAsync.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApiRequestAsync.swift; sourceTree = "<group>"; };
3889CF78286E2FE80047D955 /* UsersListViewModelAsync.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UsersListViewModelAsync.swift; sourceTree = "<group>"; };
3889CF7A286E31BA0047D955 /* TestAsync.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestAsync.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -96,6 +115,11 @@
1E05E8CD2868F16300B12456 /* Swift Code Challenge */ = {
isa = PBXGroup;
children = (
384EB9A7286DCA4C00A2FE3C /* Swift-Code-Challenge-Info.plist */,
388650B2286CEF96009A16EA /* Services */,
388650B1286CEF8F009A16EA /* ViewModels */,
388650B0286CEF89009A16EA /* Views */,
388650AF286CEF83009A16EA /* Models */,
1E05E8CE2868F16300B12456 /* Swift_Code_ChallengeApp.swift */,
1E05E8D02868F16300B12456 /* ContentView.swift */,
1E05E8D22868F16400B12456 /* Assets.xcassets */,
Expand Down Expand Up @@ -129,6 +153,51 @@
path = "Swift Code ChallengeUITests";
sourceTree = "<group>";
};
384EB9A2286DC59B00A2FE3C /* Components */ = {
isa = PBXGroup;
children = (
384EB9A5286DC5EB00A2FE3C /* CircleImageComponent.swift */,
);
path = Components;
sourceTree = "<group>";
};
388650AF286CEF83009A16EA /* Models */ = {
isa = PBXGroup;
children = (
388650AD286CEF6E009A16EA /* UserModel.swift */,
);
path = Models;
sourceTree = "<group>";
};
388650B0286CEF89009A16EA /* Views */ = {
isa = PBXGroup;
children = (
384EB9A2286DC59B00A2FE3C /* Components */,
384EB99A286D00F200A2FE3C /* UsersListView.swift */,
384EB99E286DC53A00A2FE3C /* UserDetailsView.swift */,
384EB9A0286DC56E00A2FE3C /* MapView.swift */,
384EB9A3286DC5BC00A2FE3C /* VisualEffectsView.swift */,
3889CF7A286E31BA0047D955 /* TestAsync.swift */,
);
path = Views;
sourceTree = "<group>";
};
388650B1286CEF8F009A16EA /* ViewModels */ = {
isa = PBXGroup;
children = (
3889CF78286E2FE80047D955 /* UsersListViewModelAsync.swift */,
);
path = ViewModels;
sourceTree = "<group>";
};
388650B2286CEF96009A16EA /* Services */ = {
isa = PBXGroup;
children = (
3889CF76286E2EC00047D955 /* ApiRequestAsync.swift */,
);
path = Services;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -259,7 +328,16 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
384EB9A4286DC5BC00A2FE3C /* VisualEffectsView.swift in Sources */,
384EB99F286DC53A00A2FE3C /* UserDetailsView.swift in Sources */,
384EB9A1286DC56E00A2FE3C /* MapView.swift in Sources */,
384EB9A6286DC5EB00A2FE3C /* CircleImageComponent.swift in Sources */,
1E05E8D12868F16300B12456 /* ContentView.swift in Sources */,
3889CF77286E2EC00047D955 /* ApiRequestAsync.swift in Sources */,
388650AE286CEF6E009A16EA /* UserModel.swift in Sources */,
3889CF79286E2FE80047D955 /* UsersListViewModelAsync.swift in Sources */,
384EB99B286D00F200A2FE3C /* UsersListView.swift in Sources */,
3889CF7B286E31BA0047D955 /* TestAsync.swift in Sources */,
1E05E8CF2868F16300B12456 /* Swift_Code_ChallengeApp.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -419,12 +497,12 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"Swift Code Challenge/Preview Content\"";
DEVELOPMENT_TEAM = Q6CQVYDYZ4;
DEVELOPMENT_TEAM = YM283LC5H4;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "Swift-Code-Challenge-Info.plist";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -448,12 +526,12 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"Swift Code Challenge/Preview Content\"";
DEVELOPMENT_TEAM = Q6CQVYDYZ4;
DEVELOPMENT_TEAM = YM283LC5H4;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "Swift-Code-Challenge-Info.plist";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
LD_RUNPATH_SEARCH_PATHS = (
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
uuid = "C797CBD7-D941-406F-9571-1561806D596E"
type = "1"
version = "2.0">
</Bucket>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>Swift Code Challenge.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
</dict>
</dict>
</plist>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading