Search results for

“missing package product”

52,933 results found

Post

Replies

Boosts

Views

Activity

Creating Swift Wrapper over XCFramework in Swift Package
I'm trying to use libgit2 in an iOS application. I've packaged up libgit2, libssh2, libssl, and libcrypto in XCFrameworks. The XCFrameworks support iOS arm64, simulator, and Catalyst. I want to build a Swift wrapper over the frameworks and deploy them using a Swift Package. When I link against the XCFrameworks directly in my application, I can consume libgit2 by creating a bridging header and #import from libgit2.xcframework. When I move the code into a Swift Package, it fails to build or find libgit2 even though it's part of the package. I can't find any indication of whether I need a bridging header or how to add the bridging header to my Swift package. Here's my Package.swift file: // swift-tools-version:5.3 import PackageDescription let package = Package( name: Git, platforms: [.iOS(.v13)], products: [ .library( name: Git, targets: [ SwiftGit ] ), ], targets: [ .target( name: SwiftGit, dependencies: [ .target(name: libcrypto), .targe
0
0
777
Sep ’20
Missing Entitlement. The bundle ... is missing entitlement 'com.apple.developer.networking.networkextension'."
Hello everyone, I'm encountering an issue while trying to publish an app on TestFlight. The app in question is Home Assistant, which I've compiled from the source. I am able to compile and install the app on my device without any problems. My company's developer account is properly configured, and I have set Xcode to automatically manage the provisioning profile. The archive is also created successfully, but when I attempt to upload it to Apple Store Connect for testing via TestFlight, I receive the following error: ERROR: [ContentDelivery.Uploader] Asset validation failed (90525) Missing Entitlement. The bundle 'Home Assistant.app/PlugIns/HomeAssistant-Extensions-PushProvider.appex' is missing entitlement 'com.apple.developer.networking.networkextension'. (ID: ceac6dcc-9c76-412e-8ea7-f2d2845f8013) I've made several attempts to resolve this issue to no avail. For instance, if I add the missing capability manually, then I am informed that the provisioning profile is incorrect. Howeve
8
0
3.1k
Jan ’24
CoreData in Swift Packages
I am having issues loading my model from a Swift Package with the following structure: | Package.swift | Sources | - | SamplePackage | - | - Core | - | - | - SamplePackageDataStack.swift | - | - | - DataModel.xcdatamodeld | - | - | - | - Model.xcdatamodel ( <- is this new? ) As mentioned, I am not required to list the xcdatamodeld as a resource in my Package manifest. When trying to load the model in the main app, I am getting CoreData: error: Failed to load model named DataModel Code: In my swift Package: public class SamplePackageDataStack: NSObject { public static let shared = SamplePackageDataStack() private override init() {} public lazy var persistentContainer: NSPersistentContainer = { let container = NSPersistentContainer(name: DataModel) container.loadPersistentStores(completionHandler: { (storeDescription, error) in if let error = error as NSError? { fatalError(Unresolved error (error), (error.userInfo)) } }) return container }() /// The managed object context associate
5
0
5.6k
Jun ’20
Invalid Products
We've started having issues a few days ago with StoreKit returning us a list of InvalidProducts when using the sandbox.I've gone through the classic list with no luck...http://blog.gamedonia.com/solve-invalid-product-ids#12We haven't touched that code at all for months, and even when deploying my latest working release build, it returns a list of invalid product ids.Any ideas?Anyone else with the same issue?
9
0
1.5k
Oct ’15
Reply to Invalid ToolChain
I had this error using the latest version of Xamarin. I usually sign the App in Xamarin and then use the Application loader. But got the error you reported. So I did this...1. Made the archive in Xamarin2. Opened Xcoder Organizer (When I tried to publish from here I got an error about the ITunesMetadata.plist)3. Show Package Contents on Archive4. Open Products, Applications, Show package Contents of the Application.5. delete the itunesMetadata.plist6. submit the app from the organizer.7. Sucess
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to Sign and Notarize Electron App
It’s hard to say what’s going on here because you’re using a third-party tool to sign your app. You can find my general advice on how to sign and package a Mac product in: Creating distribution-signed code for macOS Packaging Mac software for distribution I recommend that you compare that advice against what your third-party tooling is doing. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Dec ’24
schema.org "Offer", but not "Product" in Spotlight?
Hi,as metioned in slide 182 at Search in iOS 9 @WWDC (see http://devstreaming.apple.com/videos/wwdc/2015/709jcaer6su/709/709_introducing_search_apis.pdf )We see several schema.org schemes that will be interpreted by Spotlight. I am missing Product. There seem to be Offer only for online shops.Does anybody have an idea if Product would also work? Product seems to imply OfferRegards!
1
0
417
Jul ’15
Notarization service rejects .pkg. pkgutil, codesign and spctl validate app/package.
Hello. We have an app bundle that we package into a .pkg file. We are currently getting an error when notarizing the .pkg artifact. But running all the suggested tool vs the built bundle/package results in validating the bundle/package. We don't know what notarization service is rejecting the pkg. The notarization failure: Notarization Invalid { logFormatVersion: 1, jobId: b26ec329-409e-4a21-88f0-6f924795a6db, status: Invalid, statusSummary: Archive contains critical validation errors, statusCode: 4000, archiveFilename: MY-APP.pkg, uploadDate: 2021-07-19T17:39:59Z, sha256: 019c0409eab63e68cfe6323sd2e33715f07c731d5b4192254277ed62db1b6e97d, ticketContents: null, issues: [ { severity: error, code: null, path: MY-APP.pkg, message: The binary is not signed., docUrl: null, architecture: null } ] } Here is the output of codesign -v -vvv --deep --strict MY-APP.app: ... MY-APP.app: valid on disk MY-APP.app: satisfies its Designated Requirement Output of pkgutil --c
2
0
1k
Jul ’21
Reply to "Invalid Bundle. The bundle <bundle name> does not support the minimum OS Version specified in the Info.plist"
Hi, I have a similar issue after the last update of XCode. First, my GoogleMobileAds package and Firebase packages were conflicting. I updated both and the problem solved. But now, I cannot send an update to AppStore. Some of my packages are giving different errors: The bundle 'Payload/MyApp.app/Frameworks/MapboxCoreSearch.framework' is missing plist key. The Info.plist file is missing the required key: CFBundleShortVersionString. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring This bundle Payload/MyApp.app/Frameworks/MapboxCoreSearch.framework is invalid. The Info.plist file is missing the required key: CFBundleVersion. Please find more information about CFBundleVersion at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion Invalid Bundle. The bundle MyApp.app/Frameworks/AppsFlyerLi
Topic: Code Signing SubTopic: General Tags:
Mar ’24
XCFramework and Swift Packages conflict
Hola! I'm facing an issue with XCFrameworks and Swift Packages. I will try to explain it the best I can: I have an XCFramework -> XCF XCF has one or many Swift Packages compiled into it: SP1, SP2 When an application uses my XCF, it works perfect. The issue comes when an application that is using XCF, tries to use SP1 or SP2 also. Sometimes this will give a build error because Xcode doesn't know which Swift Package to use since it has the precompiled one in the XCF but the app is also calling SP1 directly. Is there a way to prioritize one or the other? at the XCF level or at the app level? So that XCode knows that it does have two versions of the same Swift Package but knows that it should only use either the one in the XCF or the one that the app is importing.
1
0
809
Feb ’22
Reply to Application is rejected because of Missing IAPs?
The thing I missed was that in addition to all the information on the In App Purchase section, you have to select the IAPs to attach on the product page (the page where you enter the description and select a binary). The IAPs have to be selected like you select the binary. Easy to miss and Apple isn’t good about explaining that In their rejection.
Topic: App & System Services SubTopic: StoreKit Tags:
Jan ’24
Language of pkg file.
Hi,I created an app for OS X and after that I created installer (pkg file). The requirement for the installer is that the installer should be translated on English language only. When I change the language of the OS X, the installer also translates.May I set that the installer should use only English language?Thanks.
4
0
908
May ’16
Creating Swift Wrapper over XCFramework in Swift Package
I'm trying to use libgit2 in an iOS application. I've packaged up libgit2, libssh2, libssl, and libcrypto in XCFrameworks. The XCFrameworks support iOS arm64, simulator, and Catalyst. I want to build a Swift wrapper over the frameworks and deploy them using a Swift Package. When I link against the XCFrameworks directly in my application, I can consume libgit2 by creating a bridging header and #import from libgit2.xcframework. When I move the code into a Swift Package, it fails to build or find libgit2 even though it's part of the package. I can't find any indication of whether I need a bridging header or how to add the bridging header to my Swift package. Here's my Package.swift file: // swift-tools-version:5.3 import PackageDescription let package = Package( name: Git, platforms: [.iOS(.v13)], products: [ .library( name: Git, targets: [ SwiftGit ] ), ], targets: [ .target( name: SwiftGit, dependencies: [ .target(name: libcrypto), .targe
Replies
0
Boosts
0
Views
777
Activity
Sep ’20
Missing Entitlement. The bundle ... is missing entitlement 'com.apple.developer.networking.networkextension'."
Hello everyone, I'm encountering an issue while trying to publish an app on TestFlight. The app in question is Home Assistant, which I've compiled from the source. I am able to compile and install the app on my device without any problems. My company's developer account is properly configured, and I have set Xcode to automatically manage the provisioning profile. The archive is also created successfully, but when I attempt to upload it to Apple Store Connect for testing via TestFlight, I receive the following error: ERROR: [ContentDelivery.Uploader] Asset validation failed (90525) Missing Entitlement. The bundle 'Home Assistant.app/PlugIns/HomeAssistant-Extensions-PushProvider.appex' is missing entitlement 'com.apple.developer.networking.networkextension'. (ID: ceac6dcc-9c76-412e-8ea7-f2d2845f8013) I've made several attempts to resolve this issue to no avail. For instance, if I add the missing capability manually, then I am informed that the provisioning profile is incorrect. Howeve
Replies
8
Boosts
0
Views
3.1k
Activity
Jan ’24
Don't See Packages in My Dashboard
Hi I just signed up to developer.apple.com today. I was told by my app developer that I needed to get the unity package but when I logged in I don't see packages anywhere in my dashboard. Please can anyone help me Thank you
Replies
2
Boosts
0
Views
692
Activity
Jun ’17
CoreData in Swift Packages
I am having issues loading my model from a Swift Package with the following structure: | Package.swift | Sources | - | SamplePackage | - | - Core | - | - | - SamplePackageDataStack.swift | - | - | - DataModel.xcdatamodeld | - | - | - | - Model.xcdatamodel ( <- is this new? ) As mentioned, I am not required to list the xcdatamodeld as a resource in my Package manifest. When trying to load the model in the main app, I am getting CoreData: error: Failed to load model named DataModel Code: In my swift Package: public class SamplePackageDataStack: NSObject { public static let shared = SamplePackageDataStack() private override init() {} public lazy var persistentContainer: NSPersistentContainer = { let container = NSPersistentContainer(name: DataModel) container.loadPersistentStores(completionHandler: { (storeDescription, error) in if let error = error as NSError? { fatalError(Unresolved error (error), (error.userInfo)) } }) return container }() /// The managed object context associate
Replies
5
Boosts
0
Views
5.6k
Activity
Jun ’20
Invalid Products
We've started having issues a few days ago with StoreKit returning us a list of InvalidProducts when using the sandbox.I've gone through the classic list with no luck...http://blog.gamedonia.com/solve-invalid-product-ids#12We haven't touched that code at all for months, and even when deploying my latest working release build, it returns a list of invalid product ids.Any ideas?Anyone else with the same issue?
Replies
9
Boosts
0
Views
1.5k
Activity
Oct ’15
Reply to Invalid ToolChain
I had this error using the latest version of Xamarin. I usually sign the App in Xamarin and then use the Application loader. But got the error you reported. So I did this...1. Made the archive in Xamarin2. Opened Xcoder Organizer (When I tried to publish from here I got an error about the ITunesMetadata.plist)3. Show Package Contents on Archive4. Open Products, Applications, Show package Contents of the Application.5. delete the itunesMetadata.plist6. submit the app from the organizer.7. Sucess
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15
Reply to Sign and Notarize Electron App
It’s hard to say what’s going on here because you’re using a third-party tool to sign your app. You can find my general advice on how to sign and package a Mac product in: Creating distribution-signed code for macOS Packaging Mac software for distribution I recommend that you compare that advice against what your third-party tooling is doing. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Dec ’24
schema.org "Offer", but not "Product" in Spotlight?
Hi,as metioned in slide 182 at Search in iOS 9 @WWDC (see http://devstreaming.apple.com/videos/wwdc/2015/709jcaer6su/709/709_introducing_search_apis.pdf )We see several schema.org schemes that will be interpreted by Spotlight. I am missing Product. There seem to be Offer only for online shops.Does anybody have an idea if Product would also work? Product seems to imply OfferRegards!
Replies
1
Boosts
0
Views
417
Activity
Jul ’15
Notarization service rejects .pkg. pkgutil, codesign and spctl validate app/package.
Hello. We have an app bundle that we package into a .pkg file. We are currently getting an error when notarizing the .pkg artifact. But running all the suggested tool vs the built bundle/package results in validating the bundle/package. We don't know what notarization service is rejecting the pkg. The notarization failure: Notarization Invalid { logFormatVersion: 1, jobId: b26ec329-409e-4a21-88f0-6f924795a6db, status: Invalid, statusSummary: Archive contains critical validation errors, statusCode: 4000, archiveFilename: MY-APP.pkg, uploadDate: 2021-07-19T17:39:59Z, sha256: 019c0409eab63e68cfe6323sd2e33715f07c731d5b4192254277ed62db1b6e97d, ticketContents: null, issues: [ { severity: error, code: null, path: MY-APP.pkg, message: The binary is not signed., docUrl: null, architecture: null } ] } Here is the output of codesign -v -vvv --deep --strict MY-APP.app: ... MY-APP.app: valid on disk MY-APP.app: satisfies its Designated Requirement Output of pkgutil --c
Replies
2
Boosts
0
Views
1k
Activity
Jul ’21
Why can't search AccessorySetupKit in My Package ?
I used Xcode 16 beta 1 I would like to import the AccessorySetupKit introduced at the wwdc24 event it can imported iOS target source, but can't imported in my local package, ControllerKit what should I do ? why can't import local package ?
Replies
1
Boosts
0
Views
477
Activity
Jun ’24
Reply to Dark Mode working in Debug configuration but not Release config
Thanks for the advice and sorry to hear about the trouble! We don't have a very complicated build process (completed product is an .app bundle with one login item helper embedded), so we roll with xcodebuild to archive then exportArchive, and then productbuild to create a signed .pkg installer.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Aug ’18
Reply to "Invalid Bundle. The bundle <bundle name> does not support the minimum OS Version specified in the Info.plist"
Hi, I have a similar issue after the last update of XCode. First, my GoogleMobileAds package and Firebase packages were conflicting. I updated both and the problem solved. But now, I cannot send an update to AppStore. Some of my packages are giving different errors: The bundle 'Payload/MyApp.app/Frameworks/MapboxCoreSearch.framework' is missing plist key. The Info.plist file is missing the required key: CFBundleShortVersionString. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring This bundle Payload/MyApp.app/Frameworks/MapboxCoreSearch.framework is invalid. The Info.plist file is missing the required key: CFBundleVersion. Please find more information about CFBundleVersion at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion Invalid Bundle. The bundle MyApp.app/Frameworks/AppsFlyerLi
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’24
XCFramework and Swift Packages conflict
Hola! I'm facing an issue with XCFrameworks and Swift Packages. I will try to explain it the best I can: I have an XCFramework -> XCF XCF has one or many Swift Packages compiled into it: SP1, SP2 When an application uses my XCF, it works perfect. The issue comes when an application that is using XCF, tries to use SP1 or SP2 also. Sometimes this will give a build error because Xcode doesn't know which Swift Package to use since it has the precompiled one in the XCF but the app is also calling SP1 directly. Is there a way to prioritize one or the other? at the XCF level or at the app level? So that XCode knows that it does have two versions of the same Swift Package but knows that it should only use either the one in the XCF or the one that the app is importing.
Replies
1
Boosts
0
Views
809
Activity
Feb ’22
Reply to Application is rejected because of Missing IAPs?
The thing I missed was that in addition to all the information on the In App Purchase section, you have to select the IAPs to attach on the product page (the page where you enter the description and select a binary). The IAPs have to be selected like you select the binary. Easy to miss and Apple isn’t good about explaining that In their rejection.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jan ’24
Language of pkg file.
Hi,I created an app for OS X and after that I created installer (pkg file). The requirement for the installer is that the installer should be translated on English language only. When I change the language of the OS X, the installer also translates.May I set that the installer should use only English language?Thanks.
Replies
4
Boosts
0
Views
908
Activity
May ’16