简体   繁体   English

相册共享未显示我的应用程序ios

[英]Photo Gallery Share not showing my app ios

I want my app to be listed among other shareable resources (such as WhatsApp, Instagram etc.) in Photo Gallery. 我希望我的应用在照片库中的其他可共享资源(例如WhatsApp,Instagram等)中列出。 I have read many articles on Stack Overflow but was unable to list my app there. 我已经阅读了很多有关Stack Overflow的文章,但是无法在此处列出我的应用程序。 I have added the following in my list. 我在清单中添加了以下内容。 But still cant see my app. 但仍然看不到我的应用程序。 What else do I need to do? 我还需要做什么?

The bundle id for both app and extension is same which is in reverse order of domain (ie com.xxx.xxx) 应用程式和扩充功能的套件编号相同,但顺序相反,即网域(即com.xxx.xxx)

iphone5错误应用程序的应用程序组详细信息扩展程序的应用程序组扩展程序的PLIST

 <key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeName</key>
            <string>Images</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>public.image</string>
            </array>
        </dict>
    </array>

I think your host application's bundle identifier must be prefixed in your extension's bundle identifier. 我认为您的主机应用程序的捆绑包标识符必须在扩展程序的捆绑包标识符中添加前缀。

for example if your host app's bundle identifier is "com.mycompany.hostapp" then extension's bundle identifier must be "com.mycompany.hostapp.myextension" 例如,如果您的主机应用程序的捆绑包标识符是“ com.mycompany.hostapp”,则扩展程序的捆绑包标识符必须是“ com.mycompany.hostapp.myextension”

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 应用程序未显示在iPad的照片库中 - App is not showing in photo gallery on iPad “图库”应用在IOS中共享视图 - “Gallery” app Share view in IOS 从我的应用程序过滤图库的内容 - Filter the contents of the Photo Gallery from my app 如何拥有可以通过图片库官方 iOS (Delphi/Firemonkey) 访问的图像的我自己的 App 文件夹 - How to have my own App folder for images that can be accessed through Photo gallery official iOS (Delphi/Firemonkey) 如何将ios应用程序集成到iOS消息照片查看器中的“共享”窗格中? - How can I integrate my ios app into the “Share out” pane in the iOS messages photo viewer? Swift 5 IOS facebook 共享对话框,未显示在我的应用程序上 - Swift 5 IOS facebook share dialog, is not showing on my app iOS应用程序-试图从图库中获取iOS照片但出现错误 - iOS App - Trying to Get iOS photo from gallery but getting an error iOS 照片库 - flickr - iOS photo gallery - flickr 将我的应用添加到图库中的“共享”按钮 - Add my app to “Share” button in gallery 照片库权限-为什么我的应用程序未显示在“设置”应用程序中? (iOS 12.1 Xcode 10.1) - Photo Library permissions - Why is my app not showing in the Settings app? (iOS 12.1 Xcode 10.1)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM