Skip to content

Instantly share code, notes, and snippets.

@mmuszynski
Created October 1, 2019 22:22
Show Gist options
  • Select an option

  • Save mmuszynski/1e05679ca71dd53914db6a7d84e96efd to your computer and use it in GitHub Desktop.

Select an option

Save mmuszynski/1e05679ca71dd53914db6a7d84e96efd to your computer and use it in GitHub Desktop.

Revisions

  1. mmuszynski created this gist Oct 1, 2019.
    42 changes: 42 additions & 0 deletions Info.plist
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,42 @@
    <?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>AddShoppingListItemIntent</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>1.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>NSExtension</key>
    <dict>
    <key>NSExtensionAttributes</key>
    <dict>
    <key>IntentsRestrictedWhileLocked</key>
    <array/>
    <key>IntentsRestrictedWhileProtectedDataUnavailable</key>
    <array/>
    <key>IntentsSupported</key>
    <array>
    <string>AddShoppingListItemIntent</string>
    </array>
    </dict>
    <key>NSExtensionPointIdentifier</key>
    <string>com.apple.intents-service</string>
    <key>NSExtensionPrincipalClass</key>
    <string>$(PRODUCT_MODULE_NAME).IntentHandler</string>
    </dict>
    </dict>
    </plist>