Skip to content

Commit

Permalink
Update demo project to use config file
Browse files Browse the repository at this point in the history
  • Loading branch information
leoz committed Jan 26, 2024
1 parent 912860f commit e41ded5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Demo/CachedImageDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
7D3A8A562AAE1D390020BA74 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
7D3A8A582AAE1D390020BA74 /* CachedImageDemo.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = CachedImageDemo.entitlements; sourceTree = "<group>"; };
7D3A8A5A2AAE1D390020BA74 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
7D755C592B63FFB300590CDE /* CachedImageDemo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CachedImageDemo.xcconfig; sourceTree = "<group>"; };
7D7738232AAE1DB80018C9DB /* CachedImage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = CachedImage; path = ..; sourceTree = "<group>"; };
/* End PBXFileReference section */

Expand Down Expand Up @@ -61,6 +62,7 @@
7D3A8A542AAE1D370020BA74 /* ContentView.swift */,
7D3A8A562AAE1D390020BA74 /* Assets.xcassets */,
7D3A8A582AAE1D390020BA74 /* CachedImageDemo.entitlements */,
7D755C592B63FFB300590CDE /* CachedImageDemo.xcconfig */,
7D3A8A592AAE1D390020BA74 /* Preview Content */,
);
path = CachedImageDemo;
Expand Down Expand Up @@ -288,7 +290,6 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"CachedImageDemo/Preview Content\"";
DEVELOPMENT_TEAM = M2D7J8K4HV;
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -307,7 +308,7 @@
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.leoz.CachedImageDemo;
PRODUCT_BUNDLE_IDENTIFIER = "--PRODUCT-BUNDLE-IDENTIFIER-";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
Expand All @@ -326,7 +327,6 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"CachedImageDemo/Preview Content\"";
DEVELOPMENT_TEAM = M2D7J8K4HV;
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -345,7 +345,7 @@
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.leoz.CachedImageDemo;
PRODUCT_BUNDLE_IDENTIFIER = "--PRODUCT-BUNDLE-IDENTIFIER-";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
Expand Down
6 changes: 6 additions & 0 deletions Demo/CachedImageDemo/CachedImageDemo.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@

// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

//
DEVELOPMENT_TEAM =

//
PRODUCT_BUNDLE_IDENTIFIER = com.leoz.CachedImageDemo

0 comments on commit e41ded5

Please sign in to comment.