- SwiftUI + async/await architecture - Barcode scanning with AVFoundation - Product display with score ring, NOVA badge, nutrition - Alternatives with sort/filter - Auth (login/register) - Favorites & history - Account management - Dark theme - Connected to food.payfrit.com API (Open Food Facts proxy) Co-Authored-By: Claude <noreply@anthropic.com>
545 lines
24 KiB
Text
545 lines
24 KiB
Text
// !$*UTF8*$!
|
|
{
|
|
archiveVersion = 1;
|
|
classes = {
|
|
};
|
|
objectVersion = 56;
|
|
objects = {
|
|
|
|
/* Begin PBXBuildFile section */
|
|
F0000001 /* PayfritFoodApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000001 /* PayfritFoodApp.swift */; };
|
|
F0000002 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F1000002 /* Assets.xcassets */; };
|
|
F0000010 /* AppState.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000010 /* AppState.swift */; };
|
|
F0000011 /* APIService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000011 /* APIService.swift */; };
|
|
F0000012 /* AuthStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000012 /* AuthStorage.swift */; };
|
|
F0000013 /* BarcodeScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000013 /* BarcodeScanner.swift */; };
|
|
F0000014 /* LocationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000014 /* LocationService.swift */; };
|
|
F0000020 /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000020 /* Product.swift */; };
|
|
F0000021 /* Alternative.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000021 /* Alternative.swift */; };
|
|
F0000022 /* UserProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000022 /* UserProfile.swift */; };
|
|
F0000023 /* ScanHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000023 /* ScanHistory.swift */; };
|
|
F0000030 /* RootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000030 /* RootView.swift */; };
|
|
F0000031 /* ScanScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000031 /* ScanScreen.swift */; };
|
|
F0000032 /* ManualEntrySheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000032 /* ManualEntrySheet.swift */; };
|
|
F0000033 /* ProductScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000033 /* ProductScreen.swift */; };
|
|
F0000034 /* ScoreRing.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000034 /* ScoreRing.swift */; };
|
|
F0000035 /* NOVABadge.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000035 /* NOVABadge.swift */; };
|
|
F0000036 /* DietaryPills.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000036 /* DietaryPills.swift */; };
|
|
F0000037 /* NutritionSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000037 /* NutritionSection.swift */; };
|
|
F0000038 /* IngredientsSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000038 /* IngredientsSection.swift */; };
|
|
F0000039 /* AlternativesScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000039 /* AlternativesScreen.swift */; };
|
|
F0000040 /* FilterChips.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000040 /* FilterChips.swift */; };
|
|
F0000041 /* AlternativeCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000041 /* AlternativeCard.swift */; };
|
|
F0000042 /* SponsoredCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000042 /* SponsoredCard.swift */; };
|
|
F0000043 /* FavoritesScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000043 /* FavoritesScreen.swift */; };
|
|
F0000044 /* HistoryScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000044 /* HistoryScreen.swift */; };
|
|
F0000045 /* AccountScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000045 /* AccountScreen.swift */; };
|
|
F0000046 /* LoginSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000046 /* LoginSheet.swift */; };
|
|
F0000047 /* RegisterSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000047 /* RegisterSheet.swift */; };
|
|
F0000048 /* ProductCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1000048 /* ProductCard.swift */; };
|
|
/* End PBXBuildFile section */
|
|
|
|
/* Begin PBXFileReference section */
|
|
F1000000 /* PayfritFood.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PayfritFood.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
F1000001 /* PayfritFoodApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayfritFoodApp.swift; sourceTree = "<group>"; };
|
|
F1000002 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
F1000003 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
F1000010 /* AppState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppState.swift; sourceTree = "<group>"; };
|
|
F1000011 /* APIService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APIService.swift; sourceTree = "<group>"; };
|
|
F1000012 /* AuthStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthStorage.swift; sourceTree = "<group>"; };
|
|
F1000013 /* BarcodeScanner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BarcodeScanner.swift; sourceTree = "<group>"; };
|
|
F1000014 /* LocationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationService.swift; sourceTree = "<group>"; };
|
|
F1000020 /* Product.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = "<group>"; };
|
|
F1000021 /* Alternative.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Alternative.swift; sourceTree = "<group>"; };
|
|
F1000022 /* UserProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserProfile.swift; sourceTree = "<group>"; };
|
|
F1000023 /* ScanHistory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScanHistory.swift; sourceTree = "<group>"; };
|
|
F1000030 /* RootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootView.swift; sourceTree = "<group>"; };
|
|
F1000031 /* ScanScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScanScreen.swift; sourceTree = "<group>"; };
|
|
F1000032 /* ManualEntrySheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ManualEntrySheet.swift; sourceTree = "<group>"; };
|
|
F1000033 /* ProductScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductScreen.swift; sourceTree = "<group>"; };
|
|
F1000034 /* ScoreRing.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScoreRing.swift; sourceTree = "<group>"; };
|
|
F1000035 /* NOVABadge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NOVABadge.swift; sourceTree = "<group>"; };
|
|
F1000036 /* DietaryPills.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DietaryPills.swift; sourceTree = "<group>"; };
|
|
F1000037 /* NutritionSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NutritionSection.swift; sourceTree = "<group>"; };
|
|
F1000038 /* IngredientsSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IngredientsSection.swift; sourceTree = "<group>"; };
|
|
F1000039 /* AlternativesScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlternativesScreen.swift; sourceTree = "<group>"; };
|
|
F1000040 /* FilterChips.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilterChips.swift; sourceTree = "<group>"; };
|
|
F1000041 /* AlternativeCard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlternativeCard.swift; sourceTree = "<group>"; };
|
|
F1000042 /* SponsoredCard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SponsoredCard.swift; sourceTree = "<group>"; };
|
|
F1000043 /* FavoritesScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FavoritesScreen.swift; sourceTree = "<group>"; };
|
|
F1000044 /* HistoryScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryScreen.swift; sourceTree = "<group>"; };
|
|
F1000045 /* AccountScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountScreen.swift; sourceTree = "<group>"; };
|
|
F1000046 /* LoginSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginSheet.swift; sourceTree = "<group>"; };
|
|
F1000047 /* RegisterSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterSheet.swift; sourceTree = "<group>"; };
|
|
F1000048 /* ProductCard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCard.swift; sourceTree = "<group>"; };
|
|
/* End PBXFileReference section */
|
|
|
|
/* Begin PBXFrameworksBuildPhase section */
|
|
F2000001 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXFrameworksBuildPhase section */
|
|
|
|
/* Begin PBXGroup section */
|
|
F3000000 = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F3000001 /* PayfritFood */,
|
|
F3000002 /* Products */,
|
|
);
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000001 /* PayfritFood */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000001 /* PayfritFoodApp.swift */,
|
|
F1000003 /* Info.plist */,
|
|
F1000002 /* Assets.xcassets */,
|
|
F3000010 /* Models */,
|
|
F3000011 /* ViewModels */,
|
|
F3000012 /* Services */,
|
|
F3000013 /* Views */,
|
|
);
|
|
path = PayfritFood;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000002 /* Products */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000000 /* PayfritFood.app */,
|
|
);
|
|
name = Products;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000010 /* Models */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000020 /* Product.swift */,
|
|
F1000021 /* Alternative.swift */,
|
|
F1000022 /* UserProfile.swift */,
|
|
F1000023 /* ScanHistory.swift */,
|
|
);
|
|
path = Models;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000011 /* ViewModels */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000010 /* AppState.swift */,
|
|
);
|
|
path = ViewModels;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000012 /* Services */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000011 /* APIService.swift */,
|
|
F1000012 /* AuthStorage.swift */,
|
|
F1000013 /* BarcodeScanner.swift */,
|
|
F1000014 /* LocationService.swift */,
|
|
);
|
|
path = Services;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000013 /* Views */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000030 /* RootView.swift */,
|
|
F3000020 /* ScanTab */,
|
|
F3000021 /* ProductTab */,
|
|
F3000022 /* AlternativesTab */,
|
|
F3000023 /* FavoritesTab */,
|
|
F3000024 /* HistoryTab */,
|
|
F3000025 /* AccountTab */,
|
|
F3000026 /* Components */,
|
|
);
|
|
path = Views;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000020 /* ScanTab */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000031 /* ScanScreen.swift */,
|
|
F1000032 /* ManualEntrySheet.swift */,
|
|
);
|
|
path = ScanTab;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000021 /* ProductTab */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000033 /* ProductScreen.swift */,
|
|
F1000034 /* ScoreRing.swift */,
|
|
F1000035 /* NOVABadge.swift */,
|
|
F1000036 /* DietaryPills.swift */,
|
|
F1000037 /* NutritionSection.swift */,
|
|
F1000038 /* IngredientsSection.swift */,
|
|
);
|
|
path = ProductTab;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000022 /* AlternativesTab */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000039 /* AlternativesScreen.swift */,
|
|
F1000040 /* FilterChips.swift */,
|
|
F1000041 /* AlternativeCard.swift */,
|
|
F1000042 /* SponsoredCard.swift */,
|
|
);
|
|
path = AlternativesTab;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000023 /* FavoritesTab */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000043 /* FavoritesScreen.swift */,
|
|
);
|
|
path = FavoritesTab;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000024 /* HistoryTab */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000044 /* HistoryScreen.swift */,
|
|
);
|
|
path = HistoryTab;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000025 /* AccountTab */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000045 /* AccountScreen.swift */,
|
|
F1000046 /* LoginSheet.swift */,
|
|
F1000047 /* RegisterSheet.swift */,
|
|
);
|
|
path = AccountTab;
|
|
sourceTree = "<group>";
|
|
};
|
|
F3000026 /* Components */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F1000048 /* ProductCard.swift */,
|
|
);
|
|
path = Components;
|
|
sourceTree = "<group>";
|
|
};
|
|
/* End PBXGroup section */
|
|
|
|
/* Begin PBXNativeTarget section */
|
|
F4000001 /* PayfritFood */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = F6000001 /* Build configuration list for PBXNativeTarget "PayfritFood" */;
|
|
buildPhases = (
|
|
F2000002 /* Sources */,
|
|
F2000001 /* Frameworks */,
|
|
F2000003 /* Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = PayfritFood;
|
|
productName = PayfritFood;
|
|
productReference = F1000000 /* PayfritFood.app */;
|
|
productType = "com.apple.product-type.application";
|
|
};
|
|
/* End PBXNativeTarget section */
|
|
|
|
/* Begin PBXProject section */
|
|
F5000001 /* Project object */ = {
|
|
isa = PBXProject;
|
|
attributes = {
|
|
BuildIndependentTargetsInParallel = 1;
|
|
LastSwiftUpdateCheck = 1500;
|
|
LastUpgradeCheck = 1500;
|
|
TargetAttributes = {
|
|
F4000001 = {
|
|
CreatedOnToolsVersion = 15.0;
|
|
};
|
|
};
|
|
};
|
|
buildConfigurationList = F6000000 /* Build configuration list for PBXProject "PayfritFood" */;
|
|
compatibilityVersion = "Xcode 14.0";
|
|
developmentRegion = en;
|
|
hasScannedForEncodings = 0;
|
|
knownRegions = (
|
|
en,
|
|
Base,
|
|
);
|
|
mainGroup = F3000000;
|
|
productRefGroup = F3000002 /* Products */;
|
|
projectDirPath = "";
|
|
projectRoot = "";
|
|
targets = (
|
|
F4000001 /* PayfritFood */,
|
|
);
|
|
};
|
|
/* End PBXProject section */
|
|
|
|
/* Begin PBXResourcesBuildPhase section */
|
|
F2000003 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
F0000002 /* Assets.xcassets in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXResourcesBuildPhase section */
|
|
|
|
/* Begin PBXSourcesBuildPhase section */
|
|
F2000002 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
F0000001 /* PayfritFoodApp.swift in Sources */,
|
|
F0000010 /* AppState.swift in Sources */,
|
|
F0000011 /* APIService.swift in Sources */,
|
|
F0000012 /* AuthStorage.swift in Sources */,
|
|
F0000013 /* BarcodeScanner.swift in Sources */,
|
|
F0000014 /* LocationService.swift in Sources */,
|
|
F0000020 /* Product.swift in Sources */,
|
|
F0000021 /* Alternative.swift in Sources */,
|
|
F0000022 /* UserProfile.swift in Sources */,
|
|
F0000023 /* ScanHistory.swift in Sources */,
|
|
F0000030 /* RootView.swift in Sources */,
|
|
F0000031 /* ScanScreen.swift in Sources */,
|
|
F0000032 /* ManualEntrySheet.swift in Sources */,
|
|
F0000033 /* ProductScreen.swift in Sources */,
|
|
F0000034 /* ScoreRing.swift in Sources */,
|
|
F0000035 /* NOVABadge.swift in Sources */,
|
|
F0000036 /* DietaryPills.swift in Sources */,
|
|
F0000037 /* NutritionSection.swift in Sources */,
|
|
F0000038 /* IngredientsSection.swift in Sources */,
|
|
F0000039 /* AlternativesScreen.swift in Sources */,
|
|
F0000040 /* FilterChips.swift in Sources */,
|
|
F0000041 /* AlternativeCard.swift in Sources */,
|
|
F0000042 /* SponsoredCard.swift in Sources */,
|
|
F0000043 /* FavoritesScreen.swift in Sources */,
|
|
F0000044 /* HistoryScreen.swift in Sources */,
|
|
F0000045 /* AccountScreen.swift in Sources */,
|
|
F0000046 /* LoginSheet.swift in Sources */,
|
|
F0000047 /* RegisterSheet.swift in Sources */,
|
|
F0000048 /* ProductCard.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXSourcesBuildPhase section */
|
|
|
|
/* Begin XCBuildConfiguration section */
|
|
F7000001 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
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;
|
|
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
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 = 16.0;
|
|
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
MTL_FAST_MATH = YES;
|
|
ONLY_ACTIVE_ARCH = YES;
|
|
SDKROOT = iphoneos;
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
};
|
|
name = Debug;
|
|
};
|
|
F7000002 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
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;
|
|
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
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 = 16.0;
|
|
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
MTL_FAST_MATH = YES;
|
|
SDKROOT = iphoneos;
|
|
SWIFT_COMPILATION_MODE = wholemodule;
|
|
VALIDATE_PRODUCT = YES;
|
|
};
|
|
name = Release;
|
|
};
|
|
F7000003 /* 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_TEAM = U83YL8VRF3;
|
|
GENERATE_INFOPLIST_FILE = NO;
|
|
INFOPLIST_FILE = PayfritFood/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = "Payfrit Food";
|
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.food-and-drink";
|
|
INFOPLIST_KEY_NSCameraUsageDescription = "We need camera access to scan barcodes on food products.";
|
|
INFOPLIST_KEY_NSLocationWhenInUseUsageDescription = "We use your location to find nearby stores with healthier alternatives.";
|
|
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
|
|
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
|
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
|
|
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
|
|
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.0.0;
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.payfrit.food;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Debug;
|
|
};
|
|
F7000004 /* 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_TEAM = U83YL8VRF3;
|
|
GENERATE_INFOPLIST_FILE = NO;
|
|
INFOPLIST_FILE = PayfritFood/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = "Payfrit Food";
|
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.food-and-drink";
|
|
INFOPLIST_KEY_NSCameraUsageDescription = "We need camera access to scan barcodes on food products.";
|
|
INFOPLIST_KEY_NSLocationWhenInUseUsageDescription = "We use your location to find nearby stores with healthier alternatives.";
|
|
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
|
|
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
|
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
|
|
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
|
|
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.0.0;
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.payfrit.food;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Release;
|
|
};
|
|
/* End XCBuildConfiguration section */
|
|
|
|
/* Begin XCConfigurationList section */
|
|
F6000000 /* Build configuration list for PBXProject "PayfritFood" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
F7000001 /* Debug */,
|
|
F7000002 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
F6000001 /* Build configuration list for PBXNativeTarget "PayfritFood" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
F7000003 /* Debug */,
|
|
F7000004 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
/* End XCConfigurationList section */
|
|
};
|
|
rootObject = F5000001 /* Project object */;
|
|
}
|