Files
voicediary/VoiceDiary.xcodeproj/project.pbxproj
Felix Förtsch 3d42c83f75 fix speech authorization crash: decouple from SwiftData context
- Make TranscriptionService a plain Sendable class (not @Observable/@MainActor)
- Request speech authorization in ContentView.onAppear via callback (no async)
- Use @State pendingMemo + Task in View for transcription (Swift 6 safe)
- Separate saveRecording() and startTranscription() to avoid data races

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 23:31:59 +01:00

523 lines
22 KiB
Plaintext

// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 77;
objects = {
/* Begin PBXBuildFile section */
247387A3DB126648ABFA452E /* SummarizationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE004D539240AD09CEDA1897 /* SummarizationService.swift */; };
2A9849FE6DC9BD95CDFA8645 /* AudioRecorderService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F30F8103F5AEAC26F1412FEC /* AudioRecorderService.swift */; };
324C41B93467262653ACE371 /* VoiceMemo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EF2756833D6984B86086F05 /* VoiceMemo.swift */; };
355E113D1253B9F311AFFFA4 /* DiaryEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DC6214C1C44C4F33F7C0C97 /* DiaryEntry.swift */; };
3A82D0F1FD29A6F8DA911209 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19E99B8436E44AEC9EC5DB77 /* Assets.xcassets */; };
5BC279CA41E44E646F2DB639 /* VoiceDiaryApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4DBB0B43B8080D8A0A42D /* VoiceDiaryApp.swift */; };
978F1E53817BC842580C9C67 /* RecordingViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39F1A1F4DB96563596246DF1 /* RecordingViewModel.swift */; };
A791D92368773881E7ECE4F6 /* RecordingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4B15363D4D0CAD8C0DD46D6 /* RecordingView.swift */; };
ADCF65A4376ADA04B73DF1B3 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 0A2739861476DDD2140B3BA6 /* Localizable.xcstrings */; };
AFE8973BC11AC7137979D5C7 /* DiaryViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4431B77FD9EDB156C12BB19 /* DiaryViewModel.swift */; };
BE246B75520F6505EFE3015E /* VoiceDiaryTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CAFA3F05939B94F1CFD372C /* VoiceDiaryTests.swift */; };
D5E3C103027212BE7607EF81 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 989E1C6DD70521684A5CB77F /* ContentView.swift */; };
D737FC41C749185F28943A87 /* DiaryEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4CCBA3B214071BEDD37CB6E /* DiaryEntryView.swift */; };
DB046641C4508472DAC45A51 /* SpeechAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0292E37072DDFA0AD07EC9A3 /* SpeechAuthorization.swift */; };
EAE61B25765D355723F9EC66 /* TranscriptionService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CD664C8607AD9DC37A6C8D1 /* TranscriptionService.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
A1BDE0820FAF42BAEF234E5F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 22863D36D5C5A4F9C2F670EE /* Project object */;
proxyType = 1;
remoteGlobalIDString = B9F15BDABC47A8060577BF9F;
remoteInfo = VoiceDiary;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0292E37072DDFA0AD07EC9A3 /* SpeechAuthorization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpeechAuthorization.swift; sourceTree = "<group>"; };
0A2739861476DDD2140B3BA6 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = "<group>"; };
19E99B8436E44AEC9EC5DB77 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
1CA6B754AFDFDAF2C8AF9C01 /* VoiceDiaryTests.xctest */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.cfbundle; path = VoiceDiaryTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
1EF2756833D6984B86086F05 /* VoiceMemo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VoiceMemo.swift; sourceTree = "<group>"; };
2CAFA3F05939B94F1CFD372C /* VoiceDiaryTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VoiceDiaryTests.swift; sourceTree = "<group>"; };
30040C9F616FE5225F189FF9 /* VoiceDiary.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = VoiceDiary.app; sourceTree = BUILT_PRODUCTS_DIR; };
39F1A1F4DB96563596246DF1 /* RecordingViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecordingViewModel.swift; sourceTree = "<group>"; };
5CB4DBB0B43B8080D8A0A42D /* VoiceDiaryApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VoiceDiaryApp.swift; sourceTree = "<group>"; };
7DC6214C1C44C4F33F7C0C97 /* DiaryEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiaryEntry.swift; sourceTree = "<group>"; };
989E1C6DD70521684A5CB77F /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
9CD664C8607AD9DC37A6C8D1 /* TranscriptionService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TranscriptionService.swift; sourceTree = "<group>"; };
BE004D539240AD09CEDA1897 /* SummarizationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SummarizationService.swift; sourceTree = "<group>"; };
D4431B77FD9EDB156C12BB19 /* DiaryViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiaryViewModel.swift; sourceTree = "<group>"; };
D4CCBA3B214071BEDD37CB6E /* DiaryEntryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiaryEntryView.swift; sourceTree = "<group>"; };
E4B15363D4D0CAD8C0DD46D6 /* RecordingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecordingView.swift; sourceTree = "<group>"; };
F30F8103F5AEAC26F1412FEC /* AudioRecorderService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioRecorderService.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXGroup section */
0B9B9383707B694E145D3D8F /* App */ = {
isa = PBXGroup;
children = (
5CB4DBB0B43B8080D8A0A42D /* VoiceDiaryApp.swift */,
);
path = App;
sourceTree = "<group>";
};
142BDBF117BAFAC9CA20527E /* Services */ = {
isa = PBXGroup;
children = (
F30F8103F5AEAC26F1412FEC /* AudioRecorderService.swift */,
0292E37072DDFA0AD07EC9A3 /* SpeechAuthorization.swift */,
BE004D539240AD09CEDA1897 /* SummarizationService.swift */,
9CD664C8607AD9DC37A6C8D1 /* TranscriptionService.swift */,
);
path = Services;
sourceTree = "<group>";
};
42EF4FC988F4B2BBF5402B65 = {
isa = PBXGroup;
children = (
D60D19D2FDD5910699F712E9 /* VoiceDiary */,
9AD23776FA65C4F8D3F0B0EF /* VoiceDiaryTests */,
DA3C886529BDBC4095712204 /* Products */,
);
indentWidth = 4;
sourceTree = "<group>";
tabWidth = 4;
usesTabs = 1;
};
43EA53248AFC60081B0E8EE4 /* Resources */ = {
isa = PBXGroup;
children = (
19E99B8436E44AEC9EC5DB77 /* Assets.xcassets */,
0A2739861476DDD2140B3BA6 /* Localizable.xcstrings */,
);
path = Resources;
sourceTree = "<group>";
};
88B119656D1AB183CCE625F9 /* ViewModels */ = {
isa = PBXGroup;
children = (
D4431B77FD9EDB156C12BB19 /* DiaryViewModel.swift */,
39F1A1F4DB96563596246DF1 /* RecordingViewModel.swift */,
);
path = ViewModels;
sourceTree = "<group>";
};
96673587A895904ADB69A5AA /* Models */ = {
isa = PBXGroup;
children = (
7DC6214C1C44C4F33F7C0C97 /* DiaryEntry.swift */,
1EF2756833D6984B86086F05 /* VoiceMemo.swift */,
);
path = Models;
sourceTree = "<group>";
};
9AD23776FA65C4F8D3F0B0EF /* VoiceDiaryTests */ = {
isa = PBXGroup;
children = (
2CAFA3F05939B94F1CFD372C /* VoiceDiaryTests.swift */,
);
path = VoiceDiaryTests;
sourceTree = "<group>";
};
C12EA9E46E07D0BD5F8F9158 /* Views */ = {
isa = PBXGroup;
children = (
989E1C6DD70521684A5CB77F /* ContentView.swift */,
D4CCBA3B214071BEDD37CB6E /* DiaryEntryView.swift */,
E4B15363D4D0CAD8C0DD46D6 /* RecordingView.swift */,
);
path = Views;
sourceTree = "<group>";
};
D60D19D2FDD5910699F712E9 /* VoiceDiary */ = {
isa = PBXGroup;
children = (
0B9B9383707B694E145D3D8F /* App */,
96673587A895904ADB69A5AA /* Models */,
43EA53248AFC60081B0E8EE4 /* Resources */,
142BDBF117BAFAC9CA20527E /* Services */,
88B119656D1AB183CCE625F9 /* ViewModels */,
C12EA9E46E07D0BD5F8F9158 /* Views */,
);
path = VoiceDiary;
sourceTree = "<group>";
};
DA3C886529BDBC4095712204 /* Products */ = {
isa = PBXGroup;
children = (
30040C9F616FE5225F189FF9 /* VoiceDiary.app */,
1CA6B754AFDFDAF2C8AF9C01 /* VoiceDiaryTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
42D1F68A1E0CFDBC21EE3EF6 /* VoiceDiaryTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = A74E7649EDCC020A2C70B4BB /* Build configuration list for PBXNativeTarget "VoiceDiaryTests" */;
buildPhases = (
36FE10DFE466EE14F92645FB /* Sources */,
);
buildRules = (
);
dependencies = (
6B3BFC15D609178E9760BAA6 /* PBXTargetDependency */,
);
name = VoiceDiaryTests;
packageProductDependencies = (
);
productName = VoiceDiaryTests;
productReference = 1CA6B754AFDFDAF2C8AF9C01 /* VoiceDiaryTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
B9F15BDABC47A8060577BF9F /* VoiceDiary */ = {
isa = PBXNativeTarget;
buildConfigurationList = 3EA87AECE5B1013152420141 /* Build configuration list for PBXNativeTarget "VoiceDiary" */;
buildPhases = (
9C33F875F18F2D6E4E1E1D5B /* Sources */,
45A5ED0D52DE258523254F95 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = VoiceDiary;
packageProductDependencies = (
);
productName = VoiceDiary;
productReference = 30040C9F616FE5225F189FF9 /* VoiceDiary.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
22863D36D5C5A4F9C2F670EE /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastUpgradeCheck = 2620;
TargetAttributes = {
42D1F68A1E0CFDBC21EE3EF6 = {
DevelopmentTeam = NG5W75WE8U;
};
B9F15BDABC47A8060577BF9F = {
DevelopmentTeam = NG5W75WE8U;
};
};
};
buildConfigurationList = 5145C1F13AA9C9A2C9F730FD /* Build configuration list for PBXProject "VoiceDiary" */;
compatibilityVersion = "Xcode 14.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
Base,
de,
en,
es,
fr,
);
mainGroup = 42EF4FC988F4B2BBF5402B65;
minimizedProjectReferenceProxies = 1;
preferredProjectObjectVersion = 77;
projectDirPath = "";
projectRoot = "";
targets = (
B9F15BDABC47A8060577BF9F /* VoiceDiary */,
42D1F68A1E0CFDBC21EE3EF6 /* VoiceDiaryTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
45A5ED0D52DE258523254F95 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3A82D0F1FD29A6F8DA911209 /* Assets.xcassets in Resources */,
ADCF65A4376ADA04B73DF1B3 /* Localizable.xcstrings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
36FE10DFE466EE14F92645FB /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
BE246B75520F6505EFE3015E /* VoiceDiaryTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9C33F875F18F2D6E4E1E1D5B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2A9849FE6DC9BD95CDFA8645 /* AudioRecorderService.swift in Sources */,
D5E3C103027212BE7607EF81 /* ContentView.swift in Sources */,
355E113D1253B9F311AFFFA4 /* DiaryEntry.swift in Sources */,
D737FC41C749185F28943A87 /* DiaryEntryView.swift in Sources */,
AFE8973BC11AC7137979D5C7 /* DiaryViewModel.swift in Sources */,
A791D92368773881E7ECE4F6 /* RecordingView.swift in Sources */,
978F1E53817BC842580C9C67 /* RecordingViewModel.swift in Sources */,
DB046641C4508472DAC45A51 /* SpeechAuthorization.swift in Sources */,
247387A3DB126648ABFA452E /* SummarizationService.swift in Sources */,
EAE61B25765D355723F9EC66 /* TranscriptionService.swift in Sources */,
5BC279CA41E44E646F2DB639 /* VoiceDiaryApp.swift in Sources */,
324C41B93467262653ACE371 /* VoiceMemo.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
6B3BFC15D609178E9760BAA6 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B9F15BDABC47A8060577BF9F /* VoiceDiary */;
targetProxy = A1BDE0820FAF42BAEF234E5F /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
0F05F1F199B158DC43A14573 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_NSMicrophoneUsageDescription = "Voice Diary needs microphone access to record your voice memos for diary entries.";
INFOPLIST_KEY_NSSpeechRecognitionUsageDescription = "Voice Diary uses on-device speech recognition to transcribe your voice memos.";
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.felixfoertsch.VoiceDiary;
SDKROOT = iphoneos;
SWIFT_EMIT_LOC_STRINGS = YES;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
1C57C2237D732FAB6027B517 /* 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;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = NG5W75WE8U;
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 = 26.0;
MARKETING_VERSION = 2026.02.15;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
SWIFT_VERSION = 6.0;
};
name = Release;
};
4FE85EF4ED605BF375B04302 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_NSMicrophoneUsageDescription = "Voice Diary needs microphone access to record your voice memos for diary entries.";
INFOPLIST_KEY_NSSpeechRecognitionUsageDescription = "Voice Diary uses on-device speech recognition to transcribe your voice memos.";
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.felixfoertsch.VoiceDiary;
SDKROOT = iphoneos;
SWIFT_EMIT_LOC_STRINGS = YES;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
D369A6D620AB094BADFEFEB0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.felixfoertsch.VoiceDiaryTests;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/VoiceDiary.app/VoiceDiary";
};
name = Debug;
};
FD097F9D49C3B4DF82D885D0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.felixfoertsch.VoiceDiaryTests;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/VoiceDiary.app/VoiceDiary";
};
name = Release;
};
FFEE92F048D8B25AC2A43339 /* 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;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = NG5W75WE8U;
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 = (
"$(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;
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
MARKETING_VERSION = 2026.02.15;
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_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 6.0;
};
name = Debug;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
3EA87AECE5B1013152420141 /* Build configuration list for PBXNativeTarget "VoiceDiary" */ = {
isa = XCConfigurationList;
buildConfigurations = (
0F05F1F199B158DC43A14573 /* Debug */,
4FE85EF4ED605BF375B04302 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
5145C1F13AA9C9A2C9F730FD /* Build configuration list for PBXProject "VoiceDiary" */ = {
isa = XCConfigurationList;
buildConfigurations = (
FFEE92F048D8B25AC2A43339 /* Debug */,
1C57C2237D732FAB6027B517 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
A74E7649EDCC020A2C70B4BB /* Build configuration list for PBXNativeTarget "VoiceDiaryTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D369A6D620AB094BADFEFEB0 /* Debug */,
FD097F9D49C3B4DF82D885D0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 22863D36D5C5A4F9C2F670EE /* Project object */;
}