Update Info.plist to include Facebook SDK configuration and modify project.pbxproj for consistent app name usage in permission descriptions. Change development team ID for code signing to ensure proper app distribution.

main
v504 2 months ago
parent 0c2d070878
commit cb05b9811c

@ -450,15 +450,15 @@
CODE_SIGN_ENTITLEMENTS = MyQrCode/MyQrCode.entitlements; CODE_SIGN_ENTITLEMENTS = MyQrCode/MyQrCode.entitlements;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1; CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 6AS7587HX4; DEVELOPMENT_TEAM = 6QV8A38YDF;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = MyQrCode/Info.plist; INFOPLIST_FILE = MyQrCode/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = MyQrCode; INFOPLIST_KEY_CFBundleDisplayName = MyQrCode;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
INFOPLIST_KEY_NSCalendarsUsageDescription = "$(PRODUCT_NAME) needs access to calendar to add events"; INFOPLIST_KEY_NSCalendarsUsageDescription = "MyQrCode needs access to calendar to add events";
INFOPLIST_KEY_NSCameraUsageDescription = "Need to access the camera to scan QR codes and barcodes."; INFOPLIST_KEY_NSCameraUsageDescription = "Need to access the camera to scan QR codes and barcodes.";
INFOPLIST_KEY_NSContactsUsageDescription = "$(PRODUCT_NAME) needs access to contacts to add contact information"; INFOPLIST_KEY_NSContactsUsageDescription = "MyQrCode needs access to contacts to add contact information";
INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "Need to access the photo gallery to select a custom logo image."; INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "Need to access the photo gallery to select a custom logo image.";
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Need to access the photo gallery to select a custom logo image."; INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Need to access the photo gallery to select a custom logo image.";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
@ -492,15 +492,15 @@
CODE_SIGN_ENTITLEMENTS = MyQrCode/MyQrCode.entitlements; CODE_SIGN_ENTITLEMENTS = MyQrCode/MyQrCode.entitlements;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1; CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 6AS7587HX4; DEVELOPMENT_TEAM = 6QV8A38YDF;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = MyQrCode/Info.plist; INFOPLIST_FILE = MyQrCode/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = MyQrCode; INFOPLIST_KEY_CFBundleDisplayName = MyQrCode;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
INFOPLIST_KEY_NSCalendarsUsageDescription = "$(PRODUCT_NAME) needs access to calendar to add events"; INFOPLIST_KEY_NSCalendarsUsageDescription = "MyQrCode needs access to calendar to add events";
INFOPLIST_KEY_NSCameraUsageDescription = "Need to access the camera to scan QR codes and barcodes."; INFOPLIST_KEY_NSCameraUsageDescription = "Need to access the camera to scan QR codes and barcodes.";
INFOPLIST_KEY_NSContactsUsageDescription = "$(PRODUCT_NAME) needs access to contacts to add contact information"; INFOPLIST_KEY_NSContactsUsageDescription = "MyQrCode needs access to contacts to add contact information";
INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "Need to access the photo gallery to select a custom logo image."; INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "Need to access the photo gallery to select a custom logo image.";
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Need to access the photo gallery to select a custom logo image."; INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Need to access the photo gallery to select a custom logo image.";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;

@ -25,6 +25,16 @@
</array> </array>
</dict> </dict>
</array> </array>
<key>FacebookAdvertiserIDCollectionEnabled</key>
<true/>
<key>FacebookAppID</key>
<string>2183345158821655</string>
<key>FacebookAutoLogAppEventsEnabled</key>
<true/>
<key>FacebookClientToken</key>
<string>edb0aea9c3cb29f03b23b9e7f07aaed8</string>
<key>FacebookDisplayName</key>
<string>MyQrCode</string>
<key>NSAppTransportSecurity</key> <key>NSAppTransportSecurity</key>
<dict> <dict>
<key>NSExceptionDomains</key> <key>NSExceptionDomains</key>
@ -32,15 +42,5 @@
</dict> </dict>
<key>NSCalendarsWriteOnlyAccessUsageDescription</key> <key>NSCalendarsWriteOnlyAccessUsageDescription</key>
<string>$(PRODUCT_NAME) needs write-only access to calendar to add events</string> <string>$(PRODUCT_NAME) needs write-only access to calendar to add events</string>
<key>FacebookAppID</key>
<string>2183345158821655</string>
<key>FacebookClientToken</key>
<string>edb0aea9c3cb29f03b23b9e7f07aaed8</string>
<key>FacebookDisplayName</key>
<string>MyQrCode</string>
<key>FacebookAutoLogAppEventsEnabled</key>
<true/>
<key>FacebookAdvertiserIDCollectionEnabled</key>
<true/>
</dict> </dict>
</plist> </plist>

Loading…
Cancel
Save