mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-06-06 20:18:32 +00:00
- added Integration.xcodeproj to the workspace - fixed macOSSwiftIntegration build running issue (the AppDelegate.swift was never called - replaced with main.swift) - removed xcconfig files from copy build phase - continued the Xcode settings cleanup - moved most of them to xcconfig - set Integration Apps WATCHOS_DEPLOYMENT_TARGET to 5.0 because of some APIs used - fixed some app ids that were incorrect (org.example.* -> com.deusty.*) - the iOS and tvOS targets AppDelegate.swift was not creating the ViewController instance. Fixed - set explicit dependencies between the Integration targets and their corresponding CocoaLumberjack dependencies - cleanup old remaining AppIcon - watchOSSwiftIntegration now builds and runs (uses Debug config) - PREPROCESSOR_MACROS is actually not used by Xcode, so the DD_LOG_LEVEL=DDLogLevel* setting was not working. Changed to GCC_PREPROCESSOR_DEFINITIONS and now it works. Set DDLogLevelWarning for release and DDLogLevelAll for debug builds - only applies to Integration targets - related PRs: #961 #970
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>watchOSSwiftIntegration Extension</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>$(EXECUTABLE_NAME)</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>$(PRODUCT_NAME)</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>XPC!</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionAttributes</key>
|
|
<dict>
|
|
<key>WKAppBundleIdentifier</key>
|
|
<string>com.deusty.iOSSwiftIntegration.watchkitapp</string>
|
|
</dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.watchkit</string>
|
|
</dict>
|
|
<key>WKExtensionDelegateClassName</key>
|
|
<string>$(PRODUCT_MODULE_NAME).ExtensionDelegate</string>
|
|
</dict>
|
|
</plist>
|