From d5f108011b76bddf3c009a03a20dea1d6a7d2537 Mon Sep 17 00:00:00 2001 From: "art.dambrine" Date: Fri, 2 Apr 2021 11:35:07 +0200 Subject: [PATCH] Initial Commit --- NavigationExemple.xcodeproj/project.pbxproj | 585 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/xcschememanagement.plist | 14 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 98 +++ .../Assets.xcassets/Contents.json | 6 + NavigationExemple/ContentView.swift | 21 + NavigationExemple/Info.plist | 50 ++ NavigationExemple/NavigationExempleApp.swift | 17 + .../Preview Assets.xcassets/Contents.json | 6 + NavigationExempleTests/Info.plist | 22 + .../NavigationExempleTests.swift | 33 + NavigationExempleUITests/Info.plist | 22 + .../NavigationExempleUITests.swift | 42 ++ 15 files changed, 942 insertions(+) create mode 100644 NavigationExemple.xcodeproj/project.pbxproj create mode 100644 NavigationExemple.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 NavigationExemple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 NavigationExemple.xcodeproj/xcuserdata/arthurdambrine.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 NavigationExemple/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 NavigationExemple/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 NavigationExemple/Assets.xcassets/Contents.json create mode 100644 NavigationExemple/ContentView.swift create mode 100644 NavigationExemple/Info.plist create mode 100644 NavigationExemple/NavigationExempleApp.swift create mode 100644 NavigationExemple/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 NavigationExempleTests/Info.plist create mode 100644 NavigationExempleTests/NavigationExempleTests.swift create mode 100644 NavigationExempleUITests/Info.plist create mode 100644 NavigationExempleUITests/NavigationExempleUITests.swift diff --git a/NavigationExemple.xcodeproj/project.pbxproj b/NavigationExemple.xcodeproj/project.pbxproj new file mode 100644 index 0000000..7c2edd3 --- /dev/null +++ b/NavigationExemple.xcodeproj/project.pbxproj @@ -0,0 +1,585 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + FA12A73D26171CC9004AF682 /* NavigationExempleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA12A73C26171CC9004AF682 /* NavigationExempleApp.swift */; }; + FA12A73F26171CC9004AF682 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA12A73E26171CC9004AF682 /* ContentView.swift */; }; + FA12A74126171CCA004AF682 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FA12A74026171CCA004AF682 /* Assets.xcassets */; }; + FA12A74426171CCA004AF682 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FA12A74326171CCA004AF682 /* Preview Assets.xcassets */; }; + FA12A74F26171CCA004AF682 /* NavigationExempleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA12A74E26171CCA004AF682 /* NavigationExempleTests.swift */; }; + FA12A75A26171CCA004AF682 /* NavigationExempleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA12A75926171CCA004AF682 /* NavigationExempleUITests.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + FA12A74B26171CCA004AF682 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FA12A73126171CC9004AF682 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA12A73826171CC9004AF682; + remoteInfo = NavigationExemple; + }; + FA12A75626171CCA004AF682 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FA12A73126171CC9004AF682 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA12A73826171CC9004AF682; + remoteInfo = NavigationExemple; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + FA12A73926171CC9004AF682 /* NavigationExemple.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NavigationExemple.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FA12A73C26171CC9004AF682 /* NavigationExempleApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationExempleApp.swift; sourceTree = ""; }; + FA12A73E26171CC9004AF682 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + FA12A74026171CCA004AF682 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + FA12A74326171CCA004AF682 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + FA12A74526171CCA004AF682 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FA12A74A26171CCA004AF682 /* NavigationExempleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NavigationExempleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + FA12A74E26171CCA004AF682 /* NavigationExempleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationExempleTests.swift; sourceTree = ""; }; + FA12A75026171CCA004AF682 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FA12A75526171CCA004AF682 /* NavigationExempleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NavigationExempleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + FA12A75926171CCA004AF682 /* NavigationExempleUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationExempleUITests.swift; sourceTree = ""; }; + FA12A75B26171CCA004AF682 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + FA12A73626171CC9004AF682 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA12A74726171CCA004AF682 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA12A75226171CCA004AF682 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + FA12A73026171CC9004AF682 = { + isa = PBXGroup; + children = ( + FA12A73B26171CC9004AF682 /* NavigationExemple */, + FA12A74D26171CCA004AF682 /* NavigationExempleTests */, + FA12A75826171CCA004AF682 /* NavigationExempleUITests */, + FA12A73A26171CC9004AF682 /* Products */, + ); + sourceTree = ""; + }; + FA12A73A26171CC9004AF682 /* Products */ = { + isa = PBXGroup; + children = ( + FA12A73926171CC9004AF682 /* NavigationExemple.app */, + FA12A74A26171CCA004AF682 /* NavigationExempleTests.xctest */, + FA12A75526171CCA004AF682 /* NavigationExempleUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + FA12A73B26171CC9004AF682 /* NavigationExemple */ = { + isa = PBXGroup; + children = ( + FA12A73C26171CC9004AF682 /* NavigationExempleApp.swift */, + FA12A73E26171CC9004AF682 /* ContentView.swift */, + FA12A74026171CCA004AF682 /* Assets.xcassets */, + FA12A74526171CCA004AF682 /* Info.plist */, + FA12A74226171CCA004AF682 /* Preview Content */, + ); + path = NavigationExemple; + sourceTree = ""; + }; + FA12A74226171CCA004AF682 /* Preview Content */ = { + isa = PBXGroup; + children = ( + FA12A74326171CCA004AF682 /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; + FA12A74D26171CCA004AF682 /* NavigationExempleTests */ = { + isa = PBXGroup; + children = ( + FA12A74E26171CCA004AF682 /* NavigationExempleTests.swift */, + FA12A75026171CCA004AF682 /* Info.plist */, + ); + path = NavigationExempleTests; + sourceTree = ""; + }; + FA12A75826171CCA004AF682 /* NavigationExempleUITests */ = { + isa = PBXGroup; + children = ( + FA12A75926171CCA004AF682 /* NavigationExempleUITests.swift */, + FA12A75B26171CCA004AF682 /* Info.plist */, + ); + path = NavigationExempleUITests; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + FA12A73826171CC9004AF682 /* NavigationExemple */ = { + isa = PBXNativeTarget; + buildConfigurationList = FA12A75E26171CCA004AF682 /* Build configuration list for PBXNativeTarget "NavigationExemple" */; + buildPhases = ( + FA12A73526171CC9004AF682 /* Sources */, + FA12A73626171CC9004AF682 /* Frameworks */, + FA12A73726171CC9004AF682 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = NavigationExemple; + productName = NavigationExemple; + productReference = FA12A73926171CC9004AF682 /* NavigationExemple.app */; + productType = "com.apple.product-type.application"; + }; + FA12A74926171CCA004AF682 /* NavigationExempleTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FA12A76126171CCA004AF682 /* Build configuration list for PBXNativeTarget "NavigationExempleTests" */; + buildPhases = ( + FA12A74626171CCA004AF682 /* Sources */, + FA12A74726171CCA004AF682 /* Frameworks */, + FA12A74826171CCA004AF682 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FA12A74C26171CCA004AF682 /* PBXTargetDependency */, + ); + name = NavigationExempleTests; + productName = NavigationExempleTests; + productReference = FA12A74A26171CCA004AF682 /* NavigationExempleTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + FA12A75426171CCA004AF682 /* NavigationExempleUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FA12A76426171CCA004AF682 /* Build configuration list for PBXNativeTarget "NavigationExempleUITests" */; + buildPhases = ( + FA12A75126171CCA004AF682 /* Sources */, + FA12A75226171CCA004AF682 /* Frameworks */, + FA12A75326171CCA004AF682 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FA12A75726171CCA004AF682 /* PBXTargetDependency */, + ); + name = NavigationExempleUITests; + productName = NavigationExempleUITests; + productReference = FA12A75526171CCA004AF682 /* NavigationExempleUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + FA12A73126171CC9004AF682 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1240; + LastUpgradeCheck = 1240; + TargetAttributes = { + FA12A73826171CC9004AF682 = { + CreatedOnToolsVersion = 12.4; + }; + FA12A74926171CCA004AF682 = { + CreatedOnToolsVersion = 12.4; + TestTargetID = FA12A73826171CC9004AF682; + }; + FA12A75426171CCA004AF682 = { + CreatedOnToolsVersion = 12.4; + TestTargetID = FA12A73826171CC9004AF682; + }; + }; + }; + buildConfigurationList = FA12A73426171CC9004AF682 /* Build configuration list for PBXProject "NavigationExemple" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = FA12A73026171CC9004AF682; + productRefGroup = FA12A73A26171CC9004AF682 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + FA12A73826171CC9004AF682 /* NavigationExemple */, + FA12A74926171CCA004AF682 /* NavigationExempleTests */, + FA12A75426171CCA004AF682 /* NavigationExempleUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + FA12A73726171CC9004AF682 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FA12A74426171CCA004AF682 /* Preview Assets.xcassets in Resources */, + FA12A74126171CCA004AF682 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA12A74826171CCA004AF682 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA12A75326171CCA004AF682 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + FA12A73526171CC9004AF682 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FA12A73F26171CC9004AF682 /* ContentView.swift in Sources */, + FA12A73D26171CC9004AF682 /* NavigationExempleApp.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA12A74626171CCA004AF682 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FA12A74F26171CCA004AF682 /* NavigationExempleTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA12A75126171CCA004AF682 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FA12A75A26171CCA004AF682 /* NavigationExempleUITests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + FA12A74C26171CCA004AF682 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = FA12A73826171CC9004AF682 /* NavigationExemple */; + targetProxy = FA12A74B26171CCA004AF682 /* PBXContainerItemProxy */; + }; + FA12A75726171CCA004AF682 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = FA12A73826171CC9004AF682 /* NavigationExemple */; + targetProxy = FA12A75626171CCA004AF682 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + FA12A75C26171CCA004AF682 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 14.4; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + FA12A75D26171CCA004AF682 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 14.4; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + FA12A75F26171CCA004AF682 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"NavigationExemple/Preview Content\""; + DEVELOPMENT_TEAM = XD2B8DTYS2; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = NavigationExemple/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = tech.nanodevs.NavigationExemple; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FA12A76026171CCA004AF682 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_ASSET_PATHS = "\"NavigationExemple/Preview Content\""; + DEVELOPMENT_TEAM = XD2B8DTYS2; + ENABLE_PREVIEWS = YES; + INFOPLIST_FILE = NavigationExemple/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = tech.nanodevs.NavigationExemple; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + FA12A76226171CCA004AF682 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = XD2B8DTYS2; + INFOPLIST_FILE = NavigationExempleTests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = tech.nanodevs.NavigationExempleTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NavigationExemple.app/NavigationExemple"; + }; + name = Debug; + }; + FA12A76326171CCA004AF682 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = XD2B8DTYS2; + INFOPLIST_FILE = NavigationExempleTests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = tech.nanodevs.NavigationExempleTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NavigationExemple.app/NavigationExemple"; + }; + name = Release; + }; + FA12A76526171CCA004AF682 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = XD2B8DTYS2; + INFOPLIST_FILE = NavigationExempleUITests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = tech.nanodevs.NavigationExempleUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = NavigationExemple; + }; + name = Debug; + }; + FA12A76626171CCA004AF682 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = XD2B8DTYS2; + INFOPLIST_FILE = NavigationExempleUITests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = tech.nanodevs.NavigationExempleUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = NavigationExemple; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + FA12A73426171CC9004AF682 /* Build configuration list for PBXProject "NavigationExemple" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FA12A75C26171CCA004AF682 /* Debug */, + FA12A75D26171CCA004AF682 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FA12A75E26171CCA004AF682 /* Build configuration list for PBXNativeTarget "NavigationExemple" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FA12A75F26171CCA004AF682 /* Debug */, + FA12A76026171CCA004AF682 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FA12A76126171CCA004AF682 /* Build configuration list for PBXNativeTarget "NavigationExempleTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FA12A76226171CCA004AF682 /* Debug */, + FA12A76326171CCA004AF682 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FA12A76426171CCA004AF682 /* Build configuration list for PBXNativeTarget "NavigationExempleUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FA12A76526171CCA004AF682 /* Debug */, + FA12A76626171CCA004AF682 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = FA12A73126171CC9004AF682 /* Project object */; +} diff --git a/NavigationExemple.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/NavigationExemple.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/NavigationExemple.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/NavigationExemple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/NavigationExemple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/NavigationExemple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/NavigationExemple.xcodeproj/xcuserdata/arthurdambrine.xcuserdatad/xcschemes/xcschememanagement.plist b/NavigationExemple.xcodeproj/xcuserdata/arthurdambrine.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..7453cdd --- /dev/null +++ b/NavigationExemple.xcodeproj/xcuserdata/arthurdambrine.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + NavigationExemple.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/NavigationExemple/Assets.xcassets/AccentColor.colorset/Contents.json b/NavigationExemple/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/NavigationExemple/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/NavigationExemple/Assets.xcassets/AppIcon.appiconset/Contents.json b/NavigationExemple/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..9221b9b --- /dev/null +++ b/NavigationExemple/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,98 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/NavigationExemple/Assets.xcassets/Contents.json b/NavigationExemple/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/NavigationExemple/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/NavigationExemple/ContentView.swift b/NavigationExemple/ContentView.swift new file mode 100644 index 0000000..160e0f0 --- /dev/null +++ b/NavigationExemple/ContentView.swift @@ -0,0 +1,21 @@ +// +// ContentView.swift +// NavigationExemple +// +// Created by Arthur Dambrine on 02/04/2021. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + Text("Hello, world!") + .padding() + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/NavigationExemple/Info.plist b/NavigationExemple/Info.plist new file mode 100644 index 0000000..efc211a --- /dev/null +++ b/NavigationExemple/Info.plist @@ -0,0 +1,50 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + + UIApplicationSupportsIndirectInputEvents + + UILaunchScreen + + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/NavigationExemple/NavigationExempleApp.swift b/NavigationExemple/NavigationExempleApp.swift new file mode 100644 index 0000000..d88aec7 --- /dev/null +++ b/NavigationExemple/NavigationExempleApp.swift @@ -0,0 +1,17 @@ +// +// NavigationExempleApp.swift +// NavigationExemple +// +// Created by Arthur Dambrine on 02/04/2021. +// + +import SwiftUI + +@main +struct NavigationExempleApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/NavigationExemple/Preview Content/Preview Assets.xcassets/Contents.json b/NavigationExemple/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/NavigationExemple/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/NavigationExempleTests/Info.plist b/NavigationExempleTests/Info.plist new file mode 100644 index 0000000..64d65ca --- /dev/null +++ b/NavigationExempleTests/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/NavigationExempleTests/NavigationExempleTests.swift b/NavigationExempleTests/NavigationExempleTests.swift new file mode 100644 index 0000000..7c69dc8 --- /dev/null +++ b/NavigationExempleTests/NavigationExempleTests.swift @@ -0,0 +1,33 @@ +// +// NavigationExempleTests.swift +// NavigationExempleTests +// +// Created by Arthur Dambrine on 02/04/2021. +// + +import XCTest +@testable import NavigationExemple + +class NavigationExempleTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/NavigationExempleUITests/Info.plist b/NavigationExempleUITests/Info.plist new file mode 100644 index 0000000..64d65ca --- /dev/null +++ b/NavigationExempleUITests/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/NavigationExempleUITests/NavigationExempleUITests.swift b/NavigationExempleUITests/NavigationExempleUITests.swift new file mode 100644 index 0000000..6d34d68 --- /dev/null +++ b/NavigationExempleUITests/NavigationExempleUITests.swift @@ -0,0 +1,42 @@ +// +// NavigationExempleUITests.swift +// NavigationExempleUITests +// +// Created by Arthur Dambrine on 02/04/2021. +// + +import XCTest + +class NavigationExempleUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use recording to get started writing UI tests. + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } + } +}