Initial commit — iOS share extension for filing Gitea issues
Two-target Xcode project (xcodegen spec). The GiteaIssue container app holds the base URL + personal access token in a shared keychain group; the GiteaIssueShare extension reads them, surfaces a repo picker (with recents) and a title/notes form, then creates the issue, uploads the screenshot as an asset, and patches the body to embed it inline. Min iOS 26.0, signing team V3PF3M6B6U. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,487 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 77;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
01EE3AAB26736728CA93C686 /* ShareSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 943C9E92238296254E79717B /* ShareSheetView.swift */; };
|
||||
07EED00FE7DDDA0CAFBC35E3 /* GiteaIssueShare.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = C835A0DE1B14653FF82534D6 /* GiteaIssueShare.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
||||
186BF400248B98EFD6B73FE4 /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8783ACB69D59F2D49C512D5E /* Keychain.swift */; };
|
||||
1BD5244ACCEAC64099EEBB4D /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88DA04623CDDD48C183CD674 /* Settings.swift */; };
|
||||
289A0520E023B3DE765CAE54 /* GiteaClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FBDAD2C584C35B08A12E6C5 /* GiteaClient.swift */; };
|
||||
35FC7E228E0B41F5D0D692B3 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96E3E2D5BC7DE7A285F7AFB6 /* SettingsView.swift */; };
|
||||
3764DB595E046C831517776B /* HelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E60AB1F455BE4290BBB0A653 /* HelpView.swift */; };
|
||||
5014022146E8A565C0FE4742 /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8783ACB69D59F2D49C512D5E /* Keychain.swift */; };
|
||||
5259B0BCE30064A20F5750C9 /* Models.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4F9B72394E791840385F7CA /* Models.swift */; };
|
||||
58CB61A5A917AD7174F17E45 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88DA04623CDDD48C183CD674 /* Settings.swift */; };
|
||||
6CDAA55A2740CF46137C04F3 /* ShareViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A36396FE48CA333CA1E4B7 /* ShareViewController.swift */; };
|
||||
A956C3B78247D43E0BA4C6D5 /* RepoCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50238EB026C45E93757D6034 /* RepoCache.swift */; };
|
||||
B3EE4A41233945C5FDDF138D /* GiteaIssueApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5302974F9B6C6614445906E /* GiteaIssueApp.swift */; };
|
||||
BE4BF5491648BEFAB36609C3 /* Models.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4F9B72394E791840385F7CA /* Models.swift */; };
|
||||
CB763FC7C88126BDC8C70675 /* GiteaClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FBDAD2C584C35B08A12E6C5 /* GiteaClient.swift */; };
|
||||
DB1BA9B0DAFEE5F278C26869 /* RepoCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50238EB026C45E93757D6034 /* RepoCache.swift */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
F5C239800D6DD31B3979E2A3 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 27251B64FF480AB8EC0A6E41 /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 8530533F8ED42AE5A8DC73EB;
|
||||
remoteInfo = GiteaIssueShare;
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
437F35B7AC1E4C86A2B4B3AB /* Embed Foundation Extensions */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "";
|
||||
dstSubfolderSpec = 13;
|
||||
files = (
|
||||
07EED00FE7DDDA0CAFBC35E3 /* GiteaIssueShare.appex in Embed Foundation Extensions */,
|
||||
);
|
||||
name = "Embed Foundation Extensions";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
282BE61DAAEDDE1523B95A12 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
||||
50238EB026C45E93757D6034 /* RepoCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepoCache.swift; sourceTree = "<group>"; };
|
||||
5B7B8092213B20CA751D33FE /* GiteaIssue.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = GiteaIssue.entitlements; sourceTree = "<group>"; };
|
||||
7FBDAD2C584C35B08A12E6C5 /* GiteaClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GiteaClient.swift; sourceTree = "<group>"; };
|
||||
8783ACB69D59F2D49C512D5E /* Keychain.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
|
||||
88DA04623CDDD48C183CD674 /* Settings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Settings.swift; sourceTree = "<group>"; };
|
||||
943C9E92238296254E79717B /* ShareSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareSheetView.swift; sourceTree = "<group>"; };
|
||||
96E3E2D5BC7DE7A285F7AFB6 /* SettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = "<group>"; };
|
||||
B5302974F9B6C6614445906E /* GiteaIssueApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GiteaIssueApp.swift; sourceTree = "<group>"; };
|
||||
C4F9B72394E791840385F7CA /* Models.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Models.swift; sourceTree = "<group>"; };
|
||||
C8019B6DFDB9FFE978C1A8A1 /* GiteaIssueShare.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = GiteaIssueShare.entitlements; sourceTree = "<group>"; };
|
||||
C835A0DE1B14653FF82534D6 /* GiteaIssueShare.appex */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = "wrapper.app-extension"; path = GiteaIssueShare.appex; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
E60AB1F455BE4290BBB0A653 /* HelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HelpView.swift; sourceTree = "<group>"; };
|
||||
E6A36396FE48CA333CA1E4B7 /* ShareViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = "<group>"; };
|
||||
F817F3CE31E9F23573E92E96 /* GiteaIssue.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = GiteaIssue.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
260438FC4CFC248774904FD2 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
99014873FB3E05D905AC0F72 /* GiteaIssue */,
|
||||
943233C666B3E7A65EBA983B /* GiteaIssueShare */,
|
||||
282DF4582F6764AE4B98418F /* Shared */,
|
||||
5F0DE786E5E3BF399FAB1AA1 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
282DF4582F6764AE4B98418F /* Shared */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7FBDAD2C584C35B08A12E6C5 /* GiteaClient.swift */,
|
||||
8783ACB69D59F2D49C512D5E /* Keychain.swift */,
|
||||
C4F9B72394E791840385F7CA /* Models.swift */,
|
||||
50238EB026C45E93757D6034 /* RepoCache.swift */,
|
||||
88DA04623CDDD48C183CD674 /* Settings.swift */,
|
||||
);
|
||||
path = Shared;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5F0DE786E5E3BF399FAB1AA1 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
F817F3CE31E9F23573E92E96 /* GiteaIssue.app */,
|
||||
C835A0DE1B14653FF82534D6 /* GiteaIssueShare.appex */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
943233C666B3E7A65EBA983B /* GiteaIssueShare */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
C8019B6DFDB9FFE978C1A8A1 /* GiteaIssueShare.entitlements */,
|
||||
282BE61DAAEDDE1523B95A12 /* Info.plist */,
|
||||
943C9E92238296254E79717B /* ShareSheetView.swift */,
|
||||
E6A36396FE48CA333CA1E4B7 /* ShareViewController.swift */,
|
||||
);
|
||||
path = GiteaIssueShare;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
99014873FB3E05D905AC0F72 /* GiteaIssue */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5B7B8092213B20CA751D33FE /* GiteaIssue.entitlements */,
|
||||
B5302974F9B6C6614445906E /* GiteaIssueApp.swift */,
|
||||
E60AB1F455BE4290BBB0A653 /* HelpView.swift */,
|
||||
96E3E2D5BC7DE7A285F7AFB6 /* SettingsView.swift */,
|
||||
);
|
||||
path = GiteaIssue;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
8530533F8ED42AE5A8DC73EB /* GiteaIssueShare */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 5442EF69B0C92817306C8BB0 /* Build configuration list for PBXNativeTarget "GiteaIssueShare" */;
|
||||
buildPhases = (
|
||||
9B221782680ADACF44216436 /* Sources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = GiteaIssueShare;
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = GiteaIssueShare;
|
||||
productReference = C835A0DE1B14653FF82534D6 /* GiteaIssueShare.appex */;
|
||||
productType = "com.apple.product-type.app-extension";
|
||||
};
|
||||
C0A6998D8057F3D0D81418CC /* GiteaIssue */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = EBCA52B3DCF7CF96695F838F /* Build configuration list for PBXNativeTarget "GiteaIssue" */;
|
||||
buildPhases = (
|
||||
9E8A23BF1FC9CD9F5A31EF77 /* Sources */,
|
||||
437F35B7AC1E4C86A2B4B3AB /* Embed Foundation Extensions */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
BF1D933F53035433A27EFE31 /* PBXTargetDependency */,
|
||||
);
|
||||
name = GiteaIssue;
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = GiteaIssue;
|
||||
productReference = F817F3CE31E9F23573E92E96 /* GiteaIssue.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
27251B64FF480AB8EC0A6E41 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
BuildIndependentTargetsInParallel = YES;
|
||||
LastUpgradeCheck = 1430;
|
||||
TargetAttributes = {
|
||||
8530533F8ED42AE5A8DC73EB = {
|
||||
DevelopmentTeam = V3PF3M6B6U;
|
||||
ProvisioningStyle = Automatic;
|
||||
};
|
||||
C0A6998D8057F3D0D81418CC = {
|
||||
DevelopmentTeam = V3PF3M6B6U;
|
||||
ProvisioningStyle = Automatic;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 7B049227F0861B8B31732B4B /* Build configuration list for PBXProject "GiteaIssue" */;
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
Base,
|
||||
en,
|
||||
);
|
||||
mainGroup = 260438FC4CFC248774904FD2;
|
||||
minimizedProjectReferenceProxies = 1;
|
||||
preferredProjectObjectVersion = 77;
|
||||
productRefGroup = 5F0DE786E5E3BF399FAB1AA1 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
C0A6998D8057F3D0D81418CC /* GiteaIssue */,
|
||||
8530533F8ED42AE5A8DC73EB /* GiteaIssueShare */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
9B221782680ADACF44216436 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
289A0520E023B3DE765CAE54 /* GiteaClient.swift in Sources */,
|
||||
186BF400248B98EFD6B73FE4 /* Keychain.swift in Sources */,
|
||||
BE4BF5491648BEFAB36609C3 /* Models.swift in Sources */,
|
||||
DB1BA9B0DAFEE5F278C26869 /* RepoCache.swift in Sources */,
|
||||
58CB61A5A917AD7174F17E45 /* Settings.swift in Sources */,
|
||||
01EE3AAB26736728CA93C686 /* ShareSheetView.swift in Sources */,
|
||||
6CDAA55A2740CF46137C04F3 /* ShareViewController.swift in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
9E8A23BF1FC9CD9F5A31EF77 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
CB763FC7C88126BDC8C70675 /* GiteaClient.swift in Sources */,
|
||||
B3EE4A41233945C5FDDF138D /* GiteaIssueApp.swift in Sources */,
|
||||
3764DB595E046C831517776B /* HelpView.swift in Sources */,
|
||||
5014022146E8A565C0FE4742 /* Keychain.swift in Sources */,
|
||||
5259B0BCE30064A20F5750C9 /* Models.swift in Sources */,
|
||||
A956C3B78247D43E0BA4C6D5 /* RepoCache.swift in Sources */,
|
||||
1BD5244ACCEAC64099EEBB4D /* Settings.swift in Sources */,
|
||||
35FC7E228E0B41F5D0D692B3 /* SettingsView.swift in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
BF1D933F53035433A27EFE31 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 8530533F8ED42AE5A8DC73EB /* GiteaIssueShare */;
|
||||
targetProxy = F5C239800D6DD31B3979E2A3 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
1758188C5D1C2C0169FB4797 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = GiteaIssueShare/GiteaIssueShare.entitlements;
|
||||
GENERATE_INFOPLIST_FILE = NO;
|
||||
INFOPLIST_FILE = GiteaIssueShare/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
"@executable_path/../../Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.treytartt.GiteaIssue.Share;
|
||||
SDKROOT = iphoneos;
|
||||
SKIP_INSTALL = YES;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
451ECB132FE921DA75BBA36D /* 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;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = V3PF3M6B6U;
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||
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;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
|
||||
MARKETING_VERSION = 1.0.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
SWIFT_EMIT_LOC_STRINGS = YES;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
||||
SWIFT_VERSION = 5.10;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
6F09C48D2C8D1468759D6FD8 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = GiteaIssueShare/GiteaIssueShare.entitlements;
|
||||
GENERATE_INFOPLIST_FILE = NO;
|
||||
INFOPLIST_FILE = GiteaIssueShare/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
"@executable_path/../../Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.treytartt.GiteaIssue.Share;
|
||||
SDKROOT = iphoneos;
|
||||
SKIP_INSTALL = YES;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
732A9163E55043084DB2FB4A /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_ENTITLEMENTS = GiteaIssue/GiteaIssue.entitlements;
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "Gitea Issue";
|
||||
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
|
||||
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
|
||||
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.treytartt.GiteaIssue;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
976B108502C6E173A5101066 /* 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;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
DEVELOPMENT_TEAM = V3PF3M6B6U;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu11;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"DEBUG=1",
|
||||
);
|
||||
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;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
|
||||
MARKETING_VERSION = 1.0.0;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
||||
SWIFT_EMIT_LOC_STRINGS = YES;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
SWIFT_VERSION = 5.10;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
D1D47330074D8F620569EEFB /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_ENTITLEMENTS = GiteaIssue/GiteaIssue.entitlements;
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "Gitea Issue";
|
||||
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
|
||||
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
|
||||
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.treytartt.GiteaIssue;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
5442EF69B0C92817306C8BB0 /* Build configuration list for PBXNativeTarget "GiteaIssueShare" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1758188C5D1C2C0169FB4797 /* Debug */,
|
||||
6F09C48D2C8D1468759D6FD8 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
7B049227F0861B8B31732B4B /* Build configuration list for PBXProject "GiteaIssue" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
976B108502C6E173A5101066 /* Debug */,
|
||||
451ECB132FE921DA75BBA36D /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
EBCA52B3DCF7CF96695F838F /* Build configuration list for PBXNativeTarget "GiteaIssue" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
732A9163E55043084DB2FB4A /* Debug */,
|
||||
D1D47330074D8F620569EEFB /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 27251B64FF480AB8EC0A6E41 /* Project object */;
|
||||
}
|
||||
Reference in New Issue
Block a user