commit bd9aa0b75ad0108076eec425e2fb604adb748b3c Author: Bill Date: Sat Mar 18 07:39:51 2023 +0800 Initial Commit diff --git a/MusicPlayer Watch App/Assets.xcassets/AccentColor.colorset/Contents.json b/MusicPlayer Watch App/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/MusicPlayer Watch App/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MusicPlayer Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json b/MusicPlayer Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..49c81cd --- /dev/null +++ b/MusicPlayer Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "watchos", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MusicPlayer Watch App/Assets.xcassets/Contents.json b/MusicPlayer Watch App/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/MusicPlayer Watch App/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MusicPlayer Watch App/ContentView.swift b/MusicPlayer Watch App/ContentView.swift new file mode 100644 index 0000000..2a03fd9 --- /dev/null +++ b/MusicPlayer Watch App/ContentView.swift @@ -0,0 +1,26 @@ +// +// ContentView.swift +// MusicPlayer Watch App +// +// Created by BillSun on 3/18/23. +// + +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/MusicPlayer Watch App/MusicPlayerApp.swift b/MusicPlayer Watch App/MusicPlayerApp.swift new file mode 100644 index 0000000..590d38c --- /dev/null +++ b/MusicPlayer Watch App/MusicPlayerApp.swift @@ -0,0 +1,17 @@ +// +// MusicPlayerApp.swift +// MusicPlayer Watch App +// +// Created by BillSun on 3/18/23. +// + +import SwiftUI + +@main +struct MusicPlayer_Watch_AppApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/MusicPlayer Watch App/Preview Content/Preview Assets.xcassets/Contents.json b/MusicPlayer Watch App/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/MusicPlayer Watch App/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MusicPlayer.xcodeproj/project.pbxproj b/MusicPlayer.xcodeproj/project.pbxproj new file mode 100644 index 0000000..feb19c0 --- /dev/null +++ b/MusicPlayer.xcodeproj/project.pbxproj @@ -0,0 +1,447 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + A95C118029C531C100737618 /* MusicPlayer Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = A95C117F29C531C100737618 /* MusicPlayer Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + A95C118529C531C100737618 /* MusicPlayerApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = A95C118429C531C100737618 /* MusicPlayerApp.swift */; }; + A95C118729C531C100737618 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A95C118629C531C100737618 /* ContentView.swift */; }; + A95C118929C531C300737618 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A95C118829C531C300737618 /* Assets.xcassets */; }; + A95C118C29C531C300737618 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A95C118B29C531C300737618 /* Preview Assets.xcassets */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + A95C118129C531C100737618 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = A95C117329C531C000737618 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A95C117E29C531C100737618; + remoteInfo = "MusicPlayer Watch App"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + A95C119229C531C300737618 /* Embed Watch Content */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(CONTENTS_FOLDER_PATH)/Watch"; + dstSubfolderSpec = 16; + files = ( + A95C118029C531C100737618 /* MusicPlayer Watch App.app in Embed Watch Content */, + ); + name = "Embed Watch Content"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + A95C117929C531C100737618 /* MusicPlayer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MusicPlayer.app; sourceTree = BUILT_PRODUCTS_DIR; }; + A95C117F29C531C100737618 /* MusicPlayer Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "MusicPlayer Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + A95C118429C531C100737618 /* MusicPlayerApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MusicPlayerApp.swift; sourceTree = ""; }; + A95C118629C531C100737618 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + A95C118829C531C300737618 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + A95C118B29C531C300737618 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + A95C117C29C531C100737618 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + A95C117229C531C000737618 = { + isa = PBXGroup; + children = ( + A95C118329C531C100737618 /* MusicPlayer Watch App */, + A95C117A29C531C100737618 /* Products */, + ); + sourceTree = ""; + }; + A95C117A29C531C100737618 /* Products */ = { + isa = PBXGroup; + children = ( + A95C117929C531C100737618 /* MusicPlayer.app */, + A95C117F29C531C100737618 /* MusicPlayer Watch App.app */, + ); + name = Products; + sourceTree = ""; + }; + A95C118329C531C100737618 /* MusicPlayer Watch App */ = { + isa = PBXGroup; + children = ( + A95C118429C531C100737618 /* MusicPlayerApp.swift */, + A95C118629C531C100737618 /* ContentView.swift */, + A95C118829C531C300737618 /* Assets.xcassets */, + A95C118A29C531C300737618 /* Preview Content */, + ); + path = "MusicPlayer Watch App"; + sourceTree = ""; + }; + A95C118A29C531C300737618 /* Preview Content */ = { + isa = PBXGroup; + children = ( + A95C118B29C531C300737618 /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + A95C117829C531C100737618 /* MusicPlayer */ = { + isa = PBXNativeTarget; + buildConfigurationList = A95C119329C531C300737618 /* Build configuration list for PBXNativeTarget "MusicPlayer" */; + buildPhases = ( + A95C117729C531C100737618 /* Resources */, + A95C119229C531C300737618 /* Embed Watch Content */, + ); + buildRules = ( + ); + dependencies = ( + A95C118229C531C100737618 /* PBXTargetDependency */, + ); + name = MusicPlayer; + productName = MusicPlayer; + productReference = A95C117929C531C100737618 /* MusicPlayer.app */; + productType = "com.apple.product-type.application.watchapp2-container"; + }; + A95C117E29C531C100737618 /* MusicPlayer Watch App */ = { + isa = PBXNativeTarget; + buildConfigurationList = A95C118F29C531C300737618 /* Build configuration list for PBXNativeTarget "MusicPlayer Watch App" */; + buildPhases = ( + A95C117B29C531C100737618 /* Sources */, + A95C117C29C531C100737618 /* Frameworks */, + A95C117D29C531C100737618 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "MusicPlayer Watch App"; + productName = "MusicPlayer Watch App"; + productReference = A95C117F29C531C100737618 /* MusicPlayer Watch App.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + A95C117329C531C000737618 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1420; + LastUpgradeCheck = 1420; + TargetAttributes = { + A95C117829C531C100737618 = { + CreatedOnToolsVersion = 14.2; + }; + A95C117E29C531C100737618 = { + CreatedOnToolsVersion = 14.2; + }; + }; + }; + buildConfigurationList = A95C117629C531C000737618 /* Build configuration list for PBXProject "MusicPlayer" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = A95C117229C531C000737618; + productRefGroup = A95C117A29C531C100737618 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + A95C117829C531C100737618 /* MusicPlayer */, + A95C117E29C531C100737618 /* MusicPlayer Watch App */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + A95C117729C531C100737618 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A95C117D29C531C100737618 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A95C118C29C531C300737618 /* Preview Assets.xcassets in Resources */, + A95C118929C531C300737618 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + A95C117B29C531C100737618 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A95C118729C531C100737618 /* ContentView.swift in Sources */, + A95C118529C531C100737618 /* MusicPlayerApp.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + A95C118229C531C100737618 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = A95C117E29C531C100737618 /* MusicPlayer Watch App */; + targetProxy = A95C118129C531C100737618 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + A95C118D29C531C300737618 /* 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; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + A95C118E29C531C300737618 /* 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; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + A95C119029C531C300737618 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"MusicPlayer Watch App/Preview Content\""; + DEVELOPMENT_TEAM = 7P35HLZ26U; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_CFBundleDisplayName = MusicPlayer; + INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; + INFOPLIST_KEY_WKWatchOnly = YES; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.billsun.MusicPlayer.watchkitapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = watchos; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 4; + WATCHOS_DEPLOYMENT_TARGET = 9.1; + }; + name = Debug; + }; + A95C119129C531C300737618 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"MusicPlayer Watch App/Preview Content\""; + DEVELOPMENT_TEAM = 7P35HLZ26U; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_CFBundleDisplayName = MusicPlayer; + INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; + INFOPLIST_KEY_WKWatchOnly = YES; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.billsun.MusicPlayer.watchkitapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = watchos; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 4; + VALIDATE_PRODUCT = YES; + WATCHOS_DEPLOYMENT_TARGET = 9.1; + }; + name = Release; + }; + A95C119429C531C300737618 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 7P35HLZ26U; + INFOPLIST_KEY_CFBundleDisplayName = MusicPlayer; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.billsun.MusicPlayer; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + A95C119529C531C300737618 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 7P35HLZ26U; + INFOPLIST_KEY_CFBundleDisplayName = MusicPlayer; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.billsun.MusicPlayer; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_VERSION = 5.0; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + A95C117629C531C000737618 /* Build configuration list for PBXProject "MusicPlayer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A95C118D29C531C300737618 /* Debug */, + A95C118E29C531C300737618 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A95C118F29C531C300737618 /* Build configuration list for PBXNativeTarget "MusicPlayer Watch App" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A95C119029C531C300737618 /* Debug */, + A95C119129C531C300737618 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A95C119329C531C300737618 /* Build configuration list for PBXNativeTarget "MusicPlayer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A95C119429C531C300737618 /* Debug */, + A95C119529C531C300737618 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = A95C117329C531C000737618 /* Project object */; +} diff --git a/MusicPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/MusicPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/MusicPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/MusicPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/MusicPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/MusicPlayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/MusicPlayer.xcodeproj/xcuserdata/bill.xcuserdatad/xcschemes/xcschememanagement.plist b/MusicPlayer.xcodeproj/xcuserdata/bill.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..25f5f82 --- /dev/null +++ b/MusicPlayer.xcodeproj/xcuserdata/bill.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + MusicPlayer Watch App.xcscheme_^#shared#^_ + + orderHint + 0 + + + +