UNPKG

@appshuttle.io/turing

Version:
638 lines (543 loc) 24.6 kB
class PBXPROJTemplates { constructor() { /* PBXPROJ STRUCTURE START */ // PBXPROJ Structure Defaults this.ARCHIVE_VERSION_DEFAULT = '1' this.CLASSES_DEFAULT = '' this.OBJECT_VERSION_DEFAULT = '50' // PBXPROJ Structure Holders this.ARCHIVE_VERSION_HOLDER = '%archiveVersion%' this.CLASSES_HOLDER = '%classes%' this.OBJECT_VERSION_HOLDER = '%objectVersion%' this.PBXBUILDFILE_HOLDER = '%pbxbuildfile%' this.PBXFILEREFERENCE_HOLDER = '%pbxfilereference%' this.PBXFRAMEWORKS_HOLDER = '%pbxframeworks%' this.PBXGROUP_HOLDER = '%pbxgroup%' this.PBXNATIVETARGET_HOLDER = '%pbxnativetarget%' this.PBXPROJECT_HOLDER = '%pbxproject%' this.PBXRESOURCEBUILD_HOLDER = '%pbxresourcebuild%' this.PBXSOURCESBUILD_HOLDER = '%pbxsourcesbuild%' this.PBXVARIANTGROUP_HOLDER = '%pbxvariantgroup%' this.PBXBUILDCONFIG_HOLDER = '%pbxbuildconfig%' this.PBXXCCONFIGLIST_HOLDER = '%pbxxcconfiglist%' this.ROOT_OBJECT_HOLDER = '%rootObject%' this.getPBXPROJStructure = function() { return ` // !$*UTF8*$! { archiveVersion = ` + this.ARCHIVE_VERSION_HOLDER + `; classes = { ` + this.CLASSES_HOLDER + ` }; objectVersion = ` + this.OBJECT_VERSION_HOLDER + `; objects = { /* Begin PBXBuildFile section */ ` + this.PBXBUILDFILE_HOLDER + ` /* End PBXBuildFile section */ /* Begin PBXFileReference section */ ` + this.PBXFILEREFERENCE_HOLDER + ` /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ ` + this.PBXFRAMEWORKS_HOLDER + ` /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ ` + this.PBXGROUP_HOLDER + ` /* End PBXGroup section */ /* Begin PBXNativeTarget section */ ` + this.PBXNATIVETARGET_HOLDER + ` /* End PBXNativeTarget section */ /* Begin PBXProject section */ ` + this.PBXPROJECT_HOLDER + ` /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ ` + this.PBXRESOURCEBUILD_HOLDER + ` /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ ` + this.PBXSOURCESBUILD_HOLDER + ` /* End PBXSourcesBuildPhase section */ /* Begin PBXVariantGroup section */ ` + this.PBXVARIANTGROUP_HOLDER + ` /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ ` + this.PBXBUILDCONFIG_HOLDER + ` /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ ` + this.PBXXCCONFIGLIST_HOLDER + ` /* End XCConfigurationList section */ }; rootObject = ` + this.ROOT_OBJECT_HOLDER + ` /* Project object */; } ` } /* PBXPROJ STRUCTURE END */ /* PBXBuildFile ITEM STRUCTURE START */ // PBXBuildFile Structure Holders this.BUILD_FILE_ID = '%buildfileid%' this.BUILD_FILE_REFERENCE_ID = '%buildfilereference%' this.BUILD_FILE_NAME = '%buildfilename%' this.getPBXBuildFileItemStructure = function() { return ` ` + this.BUILD_FILE_ID + ` /* ` + this.BUILD_FILE_NAME + ` */ = {isa = PBXBuildFile; fileRef = ` + this.BUILD_FILE_REFERENCE_ID + ` /* ` + this.BUILD_FILE_NAME + ` */; }; ` } /* PBXBuildFile ITEM STRUCTURE END */ /* PBXFileReference ITEM STRUCTURE START */ // PBXFileReference Structure Holders this.APP_FILE_ID = '%appfileid%' this.APP_FILE_NAME = '%appfilename%' this.BUILD_FILE_TYPE = '%buildfiletype%' this.BASE_BUILD_REFERENCE_ID = '%basebuildrefid%' this.APP_FILE_TYPE = 'wrapper.application' this.SWIFT_FILE_TYPE = 'sourcecode.swift' this.STORYBOARD_FILE_TYPE = 'file.storyboard' this.XCASSETS_FILE_TYPE = 'folder.assetcatalog' this.PLIST_FILE_TYPE = 'text.plist.xml' this.getPBXFileReferenceAppItemStructure = function() { return ` ` + this.APP_FILE_ID + ` /* ` + this.APP_FILE_NAME + ` */ = {isa = PBXFileReference; explicitFileType = ` + this.APP_FILE_TYPE + `; includeInIndex = 0; path = ` + this.APP_FILE_NAME + `; sourceTree = BUILT_PRODUCTS_DIR; }; ` } this.getPBXFileReferenceItemStructure = function() { return ` ` + this.BUILD_FILE_REFERENCE_ID + ` /* ` + this.BUILD_FILE_NAME + ` */ = {isa = PBXFileReference; lastKnownFileType = ` + this.BUILD_FILE_TYPE + `; path = ` + this.BUILD_FILE_NAME + `; sourceTree = "<group>"; }; ` } this.getPBXFileReferenceStoryboardItemStructure = function() { return ` ` + this.BASE_BUILD_REFERENCE_ID + ` /* Base */ = {isa = PBXFileReference; lastKnownFileType = ` + this.STORYBOARD_FILE_TYPE + `; name = Base; path = Base.lproj/` + this.BUILD_FILE_NAME + `; sourceTree = "<group>"; }; ` } /* PBXFileReference ITEM STRUCTURE END */ /* PBXFrameworksBuildPhase STRUCTURE START */ // PBXFrameworks Structure Holders this.FRAMEWORKS_SECTION_ID = '%frameworkssectionid%' this.BUILD_ACTION_MASK = '%frameworkactionmask%' this.RUN_ONLY_POSTPROCC = '%frameworkrunonlypostprocc%' // PBXFrameworks Structure Defaults this.BUILD_ACTION_MASK_DEFAULT = '2147483647' this.RUN_ONLY_FOR_DEPLOYMENT_POSTPROCC_DEFAULT = '0' this.getPBXFrameworksStructure = function() { return ` ` + this.FRAMEWORKS_SECTION_ID + ` /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = ` + this.BUILD_ACTION_MASK + `; files = ( ); runOnlyForDeploymentPostprocessing = ` + this.RUN_ONLY_POSTPROCC + `; }; ` } /* PBXFrameworksBuildPhase STRUCTURE END */ /* PBXGroups STRUCTURE START */ // PBXGroups Structure Holders this.GROUPS_MAIN_ID = '%pbxgroupsmaingroupid%' this.GROUPS_APP_ID = '%pbxgroupsappid%' this.GROUPS_PRODUCTS_ID = '%pbxgroupsproductsid%' this.GROUPS_APP_NAME = '%pbxgroupsappname%' this.GROUPS_APP_CHILDREN = '%pbxgroupsappchildren%' this.getPBXGroupsMainGroupStructure = function() { return ` ` + this.GROUPS_MAIN_ID + ` = { isa = PBXGroup; children = ( ` + this.GROUPS_APP_ID + ` /* ` + this.GROUPS_APP_NAME + ` */, ` + this.GROUPS_PRODUCTS_ID + ` /* Products */, ); sourceTree = "<group>"; }; ` } this.getPBXGroupsProductsGroupStructure = function() { return ` ` + this.GROUPS_PRODUCTS_ID + ` /* Products */ = { isa = PBXGroup; children = ( ` + this.APP_FILE_ID + ` /* ` + this.APP_FILE_NAME + ` */, ); name = Products; sourceTree = "<group>"; }; ` } this.getPBXGroupsAppGroupStructure = function() { return ` ` + this.GROUPS_APP_ID + ` /* ` + this.GROUPS_APP_NAME + ` */ = { isa = PBXGroup; children = ( ` + this.GROUPS_APP_CHILDREN + ` ); path = ` + this.GROUPS_APP_NAME + `; sourceTree = "<group>"; }; ` } /* PBXGroups STRUCTURE END */ /* PBXNativeTarget STRUCTURE START */ // PBXNativeTarget Structure Holders this.NATIVE_TARGET_ID = '%nativetargetid%' this.NATIVE_TARGET_PRODUCT_TYPE = '%nativetargetproducttype%' // PBXNativeTarget Structure Defaults this.NATIVE_TARGET_PRODUCT_TYPE_DEFAULT = 'com.apple.product-type.application' this.getPBXNativeTargetStructure = function() { return ` ` + this.NATIVE_TARGET_ID + ` /* ` + this.GROUPS_APP_NAME + ` */ = { isa = PBXNativeTarget; buildConfigurationList = ` + this.XCBUILD_TARGET_CONFIG_LIST_ID + ` /* Build configuration list for PBXNativeTarget "` + this.GROUPS_APP_NAME + `" */; buildPhases = ( ` + this.SOURCES_BUILD_ID + ` /* Sources */, ` + this.FRAMEWORKS_SECTION_ID + ` /* Frameworks */, ` + this.RESOURCES_BUILD_ID + ` /* Resources */, ); buildRules = ( ); dependencies = ( ); name = ` + this.GROUPS_APP_NAME + `; productName = ` + this.GROUPS_APP_NAME + `; productReference = ` + this.APP_FILE_ID + ` /* ` + this.APP_FILE_NAME + ` */; productType = "` + this.NATIVE_TARGET_PRODUCT_TYPE + `"; }; ` } /* PBXNativeTarget STRUCTURE END */ /* PBXProject STRUCTURE START */ // PBXProject Structure Holders this.LAST_SWIFT_UPDATE_CHECK = '%lastswiftupdatecheck%' this.LAST_UPGRADE_CHECK = '%lastupgradecheck%' this.ORGANIZATION_NAME = '%orgname%' this.CREATED_ON_TOOLS_VERSION = '%createdontoolsversion%' this.COMPATIBILITY_VERSION = '%compatibilityversion%' this.DEVELOPMENT_REGION = '%developmentregion%' this.HAS_SCANNED_ENCODINGS = '%hasscannedencodings%' // PBXProject Structure Defaults this.LAST_SWIFT_UPDATE_CHECK_DEFAULT = '1000' this.LAST_UPGRADE_CHECK_DEFAULT = '1000' this.CREATED_ON_TOOLS_VERSION_DEFAULT = '10.0' this.COMPATIBILITY_VERSION_DEFAULT = 'Xcode 9.3' this.DEVELOPMENT_REGION_DEFAULT = 'en' this.HAS_SCANNED_ENCODINGS_DEFAULT = '0' this.getPBXProjectSectionStructure = function () { return ` ` + this.ROOT_OBJECT_HOLDER + ` /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = ` + this.LAST_SWIFT_UPDATE_CHECK + `; LastUpgradeCheck = ` + this.LAST_UPGRADE_CHECK + `; ORGANIZATIONNAME = "` + this.ORGANIZATION_NAME + `"; TargetAttributes = { ` + this.NATIVE_TARGET_ID + ` = { CreatedOnToolsVersion = ` + this.CREATED_ON_TOOLS_VERSION + `; }; }; }; buildConfigurationList = ` + this.XCBUILD_PROJECT_CONFIG_LIST_ID + ` /* Build configuration list for PBXProject "` + this.GROUPS_APP_NAME + `" */; compatibilityVersion = "` + this.COMPATIBILITY_VERSION + `"; developmentRegion = ` + this.DEVELOPMENT_REGION + `; hasScannedForEncodings = ` + this.HAS_SCANNED_ENCODINGS + `; knownRegions = ( ` + this.DEVELOPMENT_REGION + `, Base, ); mainGroup = ` + this.GROUPS_MAIN_ID + `; productRefGroup = ` + this.GROUPS_PRODUCTS_ID + ` /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( ` + this.NATIVE_TARGET_ID + ` /* ` + this.GROUPS_APP_NAME + ` */, ); }; ` } /* PBXProject STRUCTURE END */ /* PBXResourcesBuildPhase STRUCTURE START */ // PBXResourcesBuildPhase Structure Holders this.RESOURCES_BUILD_ID = '%resourcesbuildid%' this.RESOURCES_FILES = '%resourcesfiles%' this.getPBXResourcesBuildPhaseStructure = function() { return ` ` + this.RESOURCES_BUILD_ID + ` /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = ` + this.BUILD_ACTION_MASK + `; files = ( ` + this.RESOURCES_FILES + ` ); runOnlyForDeploymentPostprocessing = ` + this.RUN_ONLY_POSTPROCC + `; }; ` } /* PBXResourcesBuildPhase STRUCTURE END */ /* PBXSourcesBuildPhase STRUCTURE START */ // PBXSourcesBuildPhase Structure Holders this.SOURCES_BUILD_ID = '%sourcesbuildid%' this.SOURCE_FILES = '%sourcefiles%' this.getPBXSourcesBuildPhaseStructure = function() { return ` ` + this.SOURCES_BUILD_ID + ` /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = ` + this.BUILD_ACTION_MASK + `; files = ( ` + this.SOURCE_FILES + ` ); runOnlyForDeploymentPostprocessing = ` + this.RUN_ONLY_POSTPROCC + `; }; ` } /* PBXSourcesBuildPhase STRUCTURE END */ /* PBXVariantGroup STRUCTURE START */ this.getPBXVariantGroupItemStructure = function() { return ` ` + this.BUILD_FILE_REFERENCE_ID + ` /* ` + this.BUILD_FILE_NAME + ` */ = { isa = PBXVariantGroup; children = ( ` + this.BASE_BUILD_REFERENCE_ID + ` /* Base */, ); name = ` + this.BUILD_FILE_NAME + `; sourceTree = "<group>"; }; ` } /* PBXVariantGroup STRUCTURE END */ /* XCBuildConfiguration STRUCTURE START */ // XCBuildConfiguration Structure Holders this.PROJECT_DEBUG_ID = '%projectdebugid%' this.PROJECT_RELEASE_ID = '%projectreleaseid%' this.TARGET_DEBUG_ID = '%targetdebugid%' this.TARGET_RELEASE_ID = '%targetreleaseid%' this.getPBXXCBuildConfigStructure = function() { return ` ` + this.PROJECT_DEBUG_ID + ` /* 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_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; CODE_SIGN_IDENTITY = ""; 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 = 12.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; ` + this.PROJECT_RELEASE_ID + ` /* 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_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; CODE_SIGN_IDENTITY = ""; 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 = 12.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; VALIDATE_PRODUCT = YES; }; name = Release; }; ` + this.TARGET_DEBUG_ID + ` /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = ` + this.GROUPS_APP_NAME + `/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); PRODUCT_BUNDLE_IDENTIFIER = "ORG-IDENTIFIER.APP-NAME"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; ` + this.TARGET_RELEASE_ID + ` /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = ` + this.GROUPS_APP_NAME + `/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); PRODUCT_BUNDLE_IDENTIFIER = "ORG-IDENTIFIER.APP-NAME"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Release; }; ` } /* XCBuildConfiguration STRUCTURE END */ /* XCConfigurationList STRUCTURE START */ // XCConfigurationList Structure Holders this.XCBUILD_PROJECT_CONFIG_LIST_ID = '%buildprojectconfiglistid%' this.XCBUILD_TARGET_CONFIG_LIST_ID = '%buildtargetconfiglistid%' this.CONFIG_IS_VISIBLE = '%configisvisible%' this.CONFIG_LIST_NAME = '%configlistname%' // XCConfigurationList Structure Defaults this.CONFIG_IS_VISIBLE_DEFAULT = '0' this.CONFIG_LIST_NAME_DEFAULT = 'Release' this.getXCConfigListStructure = function () { return ` ` + this.XCBUILD_PROJECT_CONFIG_LIST_ID + ` /* Build configuration list for PBXProject "` + this.GROUPS_APP_NAME + `" */ = { isa = XCConfigurationList; buildConfigurations = ( ` + this.PROJECT_DEBUG_ID + ` /* Debug */, ` + this.PROJECT_RELEASE_ID + ` /* Release */, ); defaultConfigurationIsVisible = ` + this.CONFIG_IS_VISIBLE + `; defaultConfigurationName = ` + this.CONFIG_LIST_NAME + `; }; ` + this.XCBUILD_TARGET_CONFIG_LIST_ID + ` /* Build configuration list for PBXNativeTarget "` + this.GROUPS_APP_NAME + `" */ = { isa = XCConfigurationList; buildConfigurations = ( ` + this.TARGET_DEBUG_ID + ` /* Debug */, ` + this.TARGET_RELEASE_ID + ` /* Release */, ); defaultConfigurationIsVisible = ` + this.CONFIG_IS_VISIBLE + `; defaultConfigurationName = ` + this.CONFIG_LIST_NAME + `; }; ` } /* XCConfigurationList STRUCTURE END */ } } module.exports = PBXPROJTemplates