From 1434ec52c7254dfbfaceb2cff69f387ad91a6e2e Mon Sep 17 00:00:00 2001 From: Louis Date: Thu, 6 Jul 2023 18:22:20 +0200 Subject: [PATCH] Initial Commit --- shortmenu.xcodeproj/project.pbxproj | 341 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/xcschememanagement.plist | 14 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 58 +++ shortmenu/Assets.xcassets/Contents.json | 6 + shortmenu/ContentView.swift | 26 ++ .../Preview Assets.xcassets/Contents.json | 6 + shortmenu/shortmenu.entitlements | 10 + shortmenu/shortmenuApp.swift | 17 + 11 files changed, 504 insertions(+) create mode 100644 shortmenu.xcodeproj/project.pbxproj create mode 100644 shortmenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 shortmenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 shortmenu.xcodeproj/xcuserdata/louisgallet.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 shortmenu/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 shortmenu/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 shortmenu/Assets.xcassets/Contents.json create mode 100644 shortmenu/ContentView.swift create mode 100644 shortmenu/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 shortmenu/shortmenu.entitlements create mode 100644 shortmenu/shortmenuApp.swift diff --git a/shortmenu.xcodeproj/project.pbxproj b/shortmenu.xcodeproj/project.pbxproj new file mode 100644 index 0000000..800da83 --- /dev/null +++ b/shortmenu.xcodeproj/project.pbxproj @@ -0,0 +1,341 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 2C162C832A5721BA00C3F8A3 /* shortmenuApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C162C822A5721BA00C3F8A3 /* shortmenuApp.swift */; }; + 2C162C852A5721BA00C3F8A3 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C162C842A5721BA00C3F8A3 /* ContentView.swift */; }; + 2C162C872A5721BB00C3F8A3 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2C162C862A5721BB00C3F8A3 /* Assets.xcassets */; }; + 2C162C8A2A5721BB00C3F8A3 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2C162C892A5721BB00C3F8A3 /* Preview Assets.xcassets */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 2C162C7F2A5721BA00C3F8A3 /* shortmenu.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = shortmenu.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 2C162C822A5721BA00C3F8A3 /* shortmenuApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = shortmenuApp.swift; sourceTree = ""; }; + 2C162C842A5721BA00C3F8A3 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + 2C162C862A5721BB00C3F8A3 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 2C162C892A5721BB00C3F8A3 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + 2C162C8B2A5721BB00C3F8A3 /* shortmenu.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = shortmenu.entitlements; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 2C162C7C2A5721BA00C3F8A3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 2C162C762A5721BA00C3F8A3 = { + isa = PBXGroup; + children = ( + 2C162C812A5721BA00C3F8A3 /* shortmenu */, + 2C162C802A5721BA00C3F8A3 /* Products */, + ); + sourceTree = ""; + }; + 2C162C802A5721BA00C3F8A3 /* Products */ = { + isa = PBXGroup; + children = ( + 2C162C7F2A5721BA00C3F8A3 /* shortmenu.app */, + ); + name = Products; + sourceTree = ""; + }; + 2C162C812A5721BA00C3F8A3 /* shortmenu */ = { + isa = PBXGroup; + children = ( + 2C162C822A5721BA00C3F8A3 /* shortmenuApp.swift */, + 2C162C842A5721BA00C3F8A3 /* ContentView.swift */, + 2C162C862A5721BB00C3F8A3 /* Assets.xcassets */, + 2C162C8B2A5721BB00C3F8A3 /* shortmenu.entitlements */, + 2C162C882A5721BB00C3F8A3 /* Preview Content */, + ); + path = shortmenu; + sourceTree = ""; + }; + 2C162C882A5721BB00C3F8A3 /* Preview Content */ = { + isa = PBXGroup; + children = ( + 2C162C892A5721BB00C3F8A3 /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 2C162C7E2A5721BA00C3F8A3 /* shortmenu */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2C162C8E2A5721BB00C3F8A3 /* Build configuration list for PBXNativeTarget "shortmenu" */; + buildPhases = ( + 2C162C7B2A5721BA00C3F8A3 /* Sources */, + 2C162C7C2A5721BA00C3F8A3 /* Frameworks */, + 2C162C7D2A5721BA00C3F8A3 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = shortmenu; + productName = shortmenu; + productReference = 2C162C7F2A5721BA00C3F8A3 /* shortmenu.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 2C162C772A5721BA00C3F8A3 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1430; + LastUpgradeCheck = 1430; + TargetAttributes = { + 2C162C7E2A5721BA00C3F8A3 = { + CreatedOnToolsVersion = 14.3.1; + }; + }; + }; + buildConfigurationList = 2C162C7A2A5721BA00C3F8A3 /* Build configuration list for PBXProject "shortmenu" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 2C162C762A5721BA00C3F8A3; + productRefGroup = 2C162C802A5721BA00C3F8A3 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 2C162C7E2A5721BA00C3F8A3 /* shortmenu */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 2C162C7D2A5721BA00C3F8A3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2C162C8A2A5721BB00C3F8A3 /* Preview Assets.xcassets in Resources */, + 2C162C872A5721BB00C3F8A3 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 2C162C7B2A5721BA00C3F8A3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2C162C852A5721BA00C3F8A3 /* ContentView.swift in Sources */, + 2C162C832A5721BA00C3F8A3 /* shortmenuApp.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 2C162C8C2A5721BB00C3F8A3 /* 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++20"; + 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; + MACOSX_DEPLOYMENT_TARGET = 13.3; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 2C162C8D2A5721BB00C3F8A3 /* 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++20"; + 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; + MACOSX_DEPLOYMENT_TARGET = 13.3; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 2C162C8F2A5721BB00C3F8A3 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = shortmenu/shortmenu.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"shortmenu/Preview Content\""; + DEVELOPMENT_TEAM = L2392JEC7F; + ENABLE_HARDENED_RUNTIME = YES; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = fr.louisgallet.shortmenu; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 2C162C902A5721BB00C3F8A3 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = shortmenu/shortmenu.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"shortmenu/Preview Content\""; + DEVELOPMENT_TEAM = L2392JEC7F; + ENABLE_HARDENED_RUNTIME = YES; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = fr.louisgallet.shortmenu; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2C162C7A2A5721BA00C3F8A3 /* Build configuration list for PBXProject "shortmenu" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2C162C8C2A5721BB00C3F8A3 /* Debug */, + 2C162C8D2A5721BB00C3F8A3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2C162C8E2A5721BB00C3F8A3 /* Build configuration list for PBXNativeTarget "shortmenu" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2C162C8F2A5721BB00C3F8A3 /* Debug */, + 2C162C902A5721BB00C3F8A3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 2C162C772A5721BA00C3F8A3 /* Project object */; +} diff --git a/shortmenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/shortmenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/shortmenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/shortmenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/shortmenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/shortmenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/shortmenu.xcodeproj/xcuserdata/louisgallet.xcuserdatad/xcschemes/xcschememanagement.plist b/shortmenu.xcodeproj/xcuserdata/louisgallet.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..40f1224 --- /dev/null +++ b/shortmenu.xcodeproj/xcuserdata/louisgallet.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + shortmenu.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/shortmenu/Assets.xcassets/AccentColor.colorset/Contents.json b/shortmenu/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/shortmenu/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/shortmenu/Assets.xcassets/AppIcon.appiconset/Contents.json b/shortmenu/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..3f00db4 --- /dev/null +++ b/shortmenu/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,58 @@ +{ + "images" : [ + { + "idiom" : "mac", + "scale" : "1x", + "size" : "16x16" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "16x16" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "32x32" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "32x32" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "128x128" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "128x128" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "256x256" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "256x256" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "512x512" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "512x512" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/shortmenu/Assets.xcassets/Contents.json b/shortmenu/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/shortmenu/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/shortmenu/ContentView.swift b/shortmenu/ContentView.swift new file mode 100644 index 0000000..c48c8b4 --- /dev/null +++ b/shortmenu/ContentView.swift @@ -0,0 +1,26 @@ +// +// ContentView.swift +// shortmenu +// +// Created by Louis Gallet on 06/07/2023. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundColor(.accentColor) + Text("Hello, world!") + } + .padding() + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/shortmenu/Preview Content/Preview Assets.xcassets/Contents.json b/shortmenu/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/shortmenu/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/shortmenu/shortmenu.entitlements b/shortmenu/shortmenu.entitlements new file mode 100644 index 0000000..f2ef3ae --- /dev/null +++ b/shortmenu/shortmenu.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.files.user-selected.read-only + + + diff --git a/shortmenu/shortmenuApp.swift b/shortmenu/shortmenuApp.swift new file mode 100644 index 0000000..708f1a6 --- /dev/null +++ b/shortmenu/shortmenuApp.swift @@ -0,0 +1,17 @@ +// +// shortmenuApp.swift +// shortmenu +// +// Created by Louis Gallet on 06/07/2023. +// + +import SwiftUI + +@main +struct shortmenuApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +}