hotfix
This commit is contained in:
parent
53539e5a67
commit
8ee74aed91
2 changed files with 30 additions and 4 deletions
27
Widget/Info.plist
Normal file
27
Widget/Info.plist
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
<?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>CFBundleDisplayName</key>
|
||||||
|
<string>NavidromePlayer</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>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>$(MARKETING_VERSION)</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||||
|
<key>NSExtension</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExtensionPointIdentifier</key>
|
||||||
|
<string>com.apple.widgetkit-extension</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
|
|
@ -75,21 +75,20 @@ targets:
|
||||||
# Widget Extension
|
# Widget Extension
|
||||||
# ─────────────────────────────────────
|
# ─────────────────────────────────────
|
||||||
NavidromeWidget:
|
NavidromeWidget:
|
||||||
type: appExtension
|
type: app-extension
|
||||||
platform: iOS
|
platform: iOS
|
||||||
deploymentTarget: "17.0"
|
deploymentTarget: "17.0"
|
||||||
sources:
|
sources:
|
||||||
- path: Widget
|
- path: Widget
|
||||||
excludes:
|
excludes:
|
||||||
- "*.entitlements"
|
- "*.entitlements"
|
||||||
|
- "Info.plist"
|
||||||
- path: Shared/Storage/WidgetSharedState.swift
|
- path: Shared/Storage/WidgetSharedState.swift
|
||||||
settings:
|
settings:
|
||||||
base:
|
base:
|
||||||
PRODUCT_BUNDLE_IDENTIFIER: ca.dallasgroot.navidromeplayer.app.widget
|
PRODUCT_BUNDLE_IDENTIFIER: ca.dallasgroot.navidromeplayer.app.widget
|
||||||
PRODUCT_NAME: NavidromeWidget
|
PRODUCT_NAME: NavidromeWidget
|
||||||
GENERATE_INFOPLIST_FILE: YES
|
INFOPLIST_FILE: Widget/Info.plist
|
||||||
INFOPLIST_KEY_CFBundleDisplayName: NavidromePlayer
|
|
||||||
INFOPLIST_KEY_NSExtension_NSExtensionPointIdentifier: com.apple.widgetkit-extension
|
|
||||||
CODE_SIGN_ENTITLEMENTS: Widget/NavidromeWidget.entitlements
|
CODE_SIGN_ENTITLEMENTS: Widget/NavidromeWidget.entitlements
|
||||||
SWIFT_EMIT_LOC_STRINGS: "YES"
|
SWIFT_EMIT_LOC_STRINGS: "YES"
|
||||||
SKIP_INSTALL: true
|
SKIP_INSTALL: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue