是否可以在没有完整应用程序的情况下构建 App Clip?

Is it possible to build App Clip without having a full app?

是否可以在app connect 中只注册AppClip 而不是完整的app? 有没有一种方法可以让我们从 App Clip 中隐藏底部应用横幅,而只使用剪辑?

否 - 应用剪辑必须与您的完整应用一起使用。当您在 Xcode 中创建 App Clip 目标时,它必须在其授权文件中包含一个 parent 应用程序标识符:

<?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>com.apple.developer.associated-domains</key>
    <array>
        <string>appclips:example.com</string>
    </array>
    <key>com.apple.developer.parent-application-identifiers</key>
    <array>
        <string>$(AppIdentifierPrefix)com.myparent.app</string>
    </array>
</dict>
</plist>

您发布的图像是用于所有应用程序剪辑的布局,您在其中为号召性用语按钮提供图像、副标题和文本。卡片的呈现由系统处理,不能修改以隐藏任何元素。