Search results for

“missing package product”

52,926 results found

Post

Replies

Boosts

Views

Activity

Reply to SMJobBless privileged helpers and granting permission
Thanks Quinn, Sorry, yes, my sloppy terminology of The Finder which I often use for unattached dialogs the user sees. I did not know this about the Full Disk Access being different so my experiments with plists for the priviledge helper need to be redone. One of the operations my helper is doing that needs Full Disk Access is downloading a pkg and checking it is signed. None of the normal security api's appear to work with pkg's, maybe I missed something there, I can check apps and so forth on disk. So I end up running /usr/sbin/pkgutil --check-signature instead as I could not figure out how pkgutil is implemented. Did I miss something in the security api, should I be able to look at a pkg's validity?
Topic: Privacy & Security SubTopic: General Tags:
Apr ’22
This package is incompatible
This package is incompatible with this version of OS X and may fail to install.Heads up for anyone who makes packages. If you write to SIP protected locations, (even symlinks) you will get this warning.Example:Writing to /var - badWriting to /private/var - goodFrom now on it might be ideal to write to the full path as these are not SIP protected./private/etc/private/tmp/private/var
0
0
2.2k
Jun ’15
Reply to Notarization fails for flat installer package containing notarized app
You’re building your installer package using a third-party tool. Does the problem reproduce if you build it using Apple’s tools? You don’t need to build something production ready here; just use our tools to create a package you can test against the notary service. There’s a simple command for doing that in Packaging Mac Software for Distribution. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
Feb ’23
Problem with swift package manager caching and binary package
I've setup my Xcode project to use a binary package, for which the manifest is stored in the private git repository. The dependency tracking is set to branch -- it just fetches the manifest from master branch of the repository. It seems, that after initial fetching Xcode or spm caches the commit hash used to fetch the manifest. If I push an update of Package.swift (i.e. containing updated artifact checksum) this change is not refreshed in the project (i.e. after resetting package cache it complains about the checksum mismatch between the actual binary artifact and the manifest). At the same time if I manually clone the repository I see valid checksum in the manifest. I've tried to use all 3 options in Xcode (i.e. reset package cache, resolve package versions, update to newest version). None of them solves the problem. It seems that to reset the cache I need to remove the package from the project and add it again. I'm looking for an elegant way to refresh the manife
1
0
2.2k
Sep ’22
Reply to Notarizing Dmg with an unsigned element
Our product is a developpement tool that can be simply used as a database.Some customers will sign their customized binaries and some will not.If they do not then the problem is that they will still distribute a damaged signed (with our certificate) package because the signature will be damaged due to customization.We do not want to provide, by design, a means to create product with wrong signature.
Topic: Code Signing SubTopic: General Tags:
Dec ’19
Can I get path and name of pkg package from InstallerPane?
Hi, I'm writing a custom step to our installer using IntallerPlugins.framework and class InstallerPane. Is it possible to get path and name of the pkg file from InstallerPane object? I tried solution from this page but it seems right now the delegate is not set. http://s.sudre.free.fr/Stuff/Installer/Installer_Plugins/InstallerPlugins-FAQ002.html. Also there's no appropriate tag for this framework.
0
0
1.8k
Oct ’22
How to depend on a non-macOS external package in macros
Hello everyone, I am trying to create a macro that depends on an external package to abstract some of the packages logic. The point is that the dependency does not support macOS which results in a build failure when trying to build the macro. Since macOS 10.15 is required for creating macros, any thing can be done to get it to work? Here is a sample to what I'm trying to do import PackageDescription import CompilerPluginSupport let package = Package( name: Stringify, platforms: [ .macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .macCatalyst(.v13) ], products: [ .library( name: Stringify, targets: [Stringify] ), .executable( name: StringifyClient, targets: [StringifyClient] ), ], dependencies: [ .package(url: https://github.com/apple/swift-syntax.git, from: 509.0.0), .package(url: https://github.com/MyDependency, from: 1.0.0), ], targets: [ .target( name: Stringify, dependencies: [StringifyMacros] ), .executableTarget( name: StringifyClient
1
0
424
Jul ’24
Pkg installation package uploaded to macstore email prompt ITMS-90296
Hello! I encountered an issue while packaging and uploading the project to the Mac store. I received an email stating: ITMS-90296: App Sandbox not enabled - The following executors must include the 'com. apple. security. app sandbox' entitlement with a Boolean value of true in the entitlement property list: [[com. electron. iflyrecclient. pkg/Payload/iFlytek Listen. app/Contents/MacOS/iFlytek Listen]] Refer to App Sandbox page at https://developer.apple.com/documentation/security/app_sandbox for more information on sandboxing your app. Though you are not required to fix the following issues, we wanted to make you aware of them: ITMS-90886: 'Cannot be used with TestFlight because the signature for the bundle at' iFlytek hears. app 'is missing an application identifier but has an application identifier in the provisioning profile for the bundle.' Bundles with application identifiers in the provisioning profile are expected to have the same identifier signed into the bundle in order to
18
0
1.9k
Nov ’24
Export Localizations vs Swift Packages
In regular projects, there is an Export Localizations option in the Product menu, but for Swift Packages, this is not available. Adding local Swift Packages as dependencies of a regular project and using Export Localizations on the regular project doesn't include the Localizable strings from the Packages' sources either. The command-line version (xcodebuild -exportLocalizations) has the same restrictions. Is there a way to export NSLocalizedString occurrences to an xliff for Swift Packages? Or are we supposed to do things manually for now?
4
0
3.1k
Jul ’21
Apple Product Images
Hi Apple Developer Forums,Apoliges if this is a silly question - but I can't seem to find all of the product images for both iOS, OSX, and watchOS.The following links have most of the product images, but for example the new MacBook is missing from the mac guidelines:App Store GuidelinesMac App Store Guidelines
1
0
4.4k
Feb ’16
Reply to Installer packages are failing to install on macOS26.1
Got it. Thanks. I took a look at your product and it seems that I completely misunderstood the issue here. I was expecting a single installer package (.pkg) but it’s actually a disk image that contains an app and many different installer packages. Looking again at your bug I believe your app is running the installer tool with the /Volumes/F____C______W__________/OSX/C___W______.pkg package (I’ve blanked out most of the path, but I figured you’d be able to recognise it). Is that right? I was curious if this was tied to the installer tool or your app’s use of that tool, so I opened that package with the Installer app and tried to install it. It failed in a similar fashion. Does that match your expectations? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Nov ’25
Why does "NSArray *product = response.products" return no product?
In sandbox testing, I was able to get auto-renewing subscription to work, but decided to switch to one-time in-app purchase. I've read many how-to's, but I'm missing something. My app has Bundle ID com.myname.id1 and IAP capability added. The IAP has Product ID com.myname.id2. My agreements are up-to-date (auto-renewing subscription worked). The In-App Purchases screen lists my IAP under Drafts (1); is this expected? [SKPaymentQueue canMakePayments] returns true. [[SKProductsRequest alloc] initWithProductIdentifiers:set] (where set contains com.myname.id2) responds to [request start]. In the delegate, NSArray *product = response.products comes back empty. Does the IAP have its own Bundle ID? What am I doing wrong? What have I not told you that's important? I've been stuck for a few days on this. Thanks!
3
0
963
Mar ’23
Reply to SMJobBless privileged helpers and granting permission
Thanks Quinn, Sorry, yes, my sloppy terminology of The Finder which I often use for unattached dialogs the user sees. I did not know this about the Full Disk Access being different so my experiments with plists for the priviledge helper need to be redone. One of the operations my helper is doing that needs Full Disk Access is downloading a pkg and checking it is signed. None of the normal security api's appear to work with pkg's, maybe I missed something there, I can check apps and so forth on disk. So I end up running /usr/sbin/pkgutil --check-signature instead as I could not figure out how pkgutil is implemented. Did I miss something in the security api, should I be able to look at a pkg's validity?
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’22
This package is incompatible
This package is incompatible with this version of OS X and may fail to install.Heads up for anyone who makes packages. If you write to SIP protected locations, (even symlinks) you will get this warning.Example:Writing to /var - badWriting to /private/var - goodFrom now on it might be ideal to write to the full path as these are not SIP protected./private/etc/private/tmp/private/var
Replies
0
Boosts
0
Views
2.2k
Activity
Jun ’15
Reply to Notarization fails for flat installer package containing notarized app
You’re building your installer package using a third-party tool. Does the problem reproduce if you build it using Apple’s tools? You don’t need to build something production ready here; just use our tools to create a package you can test against the notary service. There’s a simple command for doing that in Packaging Mac Software for Distribution. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
Feb ’23
Problem with swift package manager caching and binary package
I've setup my Xcode project to use a binary package, for which the manifest is stored in the private git repository. The dependency tracking is set to branch -- it just fetches the manifest from master branch of the repository. It seems, that after initial fetching Xcode or spm caches the commit hash used to fetch the manifest. If I push an update of Package.swift (i.e. containing updated artifact checksum) this change is not refreshed in the project (i.e. after resetting package cache it complains about the checksum mismatch between the actual binary artifact and the manifest). At the same time if I manually clone the repository I see valid checksum in the manifest. I've tried to use all 3 options in Xcode (i.e. reset package cache, resolve package versions, update to newest version). None of them solves the problem. It seems that to reset the cache I need to remove the package from the project and add it again. I'm looking for an elegant way to refresh the manife
Replies
1
Boosts
0
Views
2.2k
Activity
Sep ’22
Reply to Notarizing Dmg with an unsigned element
Our product is a developpement tool that can be simply used as a database.Some customers will sign their customized binaries and some will not.If they do not then the problem is that they will still distribute a damaged signed (with our certificate) package because the signature will be damaged due to customization.We do not want to provide, by design, a means to create product with wrong signature.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’19
Can I get path and name of pkg package from InstallerPane?
Hi, I'm writing a custom step to our installer using IntallerPlugins.framework and class InstallerPane. Is it possible to get path and name of the pkg file from InstallerPane object? I tried solution from this page but it seems right now the delegate is not set. http://s.sudre.free.fr/Stuff/Installer/Installer_Plugins/InstallerPlugins-FAQ002.html. Also there's no appropriate tag for this framework.
Replies
0
Boosts
0
Views
1.8k
Activity
Oct ’22
How to depend on a non-macOS external package in macros
Hello everyone, I am trying to create a macro that depends on an external package to abstract some of the packages logic. The point is that the dependency does not support macOS which results in a build failure when trying to build the macro. Since macOS 10.15 is required for creating macros, any thing can be done to get it to work? Here is a sample to what I'm trying to do import PackageDescription import CompilerPluginSupport let package = Package( name: Stringify, platforms: [ .macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .macCatalyst(.v13) ], products: [ .library( name: Stringify, targets: [Stringify] ), .executable( name: StringifyClient, targets: [StringifyClient] ), ], dependencies: [ .package(url: https://github.com/apple/swift-syntax.git, from: 509.0.0), .package(url: https://github.com/MyDependency, from: 1.0.0), ], targets: [ .target( name: Stringify, dependencies: [StringifyMacros] ), .executableTarget( name: StringifyClient
Replies
1
Boosts
0
Views
424
Activity
Jul ’24
Pkg installation package uploaded to macstore email prompt ITMS-90296
Hello! I encountered an issue while packaging and uploading the project to the Mac store. I received an email stating: ITMS-90296: App Sandbox not enabled - The following executors must include the 'com. apple. security. app sandbox' entitlement with a Boolean value of true in the entitlement property list: [[com. electron. iflyrecclient. pkg/Payload/iFlytek Listen. app/Contents/MacOS/iFlytek Listen]] Refer to App Sandbox page at https://developer.apple.com/documentation/security/app_sandbox for more information on sandboxing your app. Though you are not required to fix the following issues, we wanted to make you aware of them: ITMS-90886: 'Cannot be used with TestFlight because the signature for the bundle at' iFlytek hears. app 'is missing an application identifier but has an application identifier in the provisioning profile for the bundle.' Bundles with application identifiers in the provisioning profile are expected to have the same identifier signed into the bundle in order to
Replies
18
Boosts
0
Views
1.9k
Activity
Nov ’24
Export Localizations vs Swift Packages
In regular projects, there is an Export Localizations option in the Product menu, but for Swift Packages, this is not available. Adding local Swift Packages as dependencies of a regular project and using Export Localizations on the regular project doesn't include the Localizable strings from the Packages' sources either. The command-line version (xcodebuild -exportLocalizations) has the same restrictions. Is there a way to export NSLocalizedString occurrences to an xliff for Swift Packages? Or are we supposed to do things manually for now?
Replies
4
Boosts
0
Views
3.1k
Activity
Jul ’21
Deployment package
My company requested a Fairplay deplpyment package. How do I follow-up on the status? The email ID mentioined in the acknowledgement fps@apple.com seems to be down.
Replies
2
Boosts
0
Views
1.1k
Activity
Jan ’18
Apple Product Images
Hi Apple Developer Forums,Apoliges if this is a silly question - but I can't seem to find all of the product images for both iOS, OSX, and watchOS.The following links have most of the product images, but for example the new MacBook is missing from the mac guidelines:App Store GuidelinesMac App Store Guidelines
Replies
1
Boosts
0
Views
4.4k
Activity
Feb ’16
Reply to Installer packages are failing to install on macOS26.1
Got it. Thanks. I took a look at your product and it seems that I completely misunderstood the issue here. I was expecting a single installer package (.pkg) but it’s actually a disk image that contains an app and many different installer packages. Looking again at your bug I believe your app is running the installer tool with the /Volumes/F____C______W__________/OSX/C___W______.pkg package (I’ve blanked out most of the path, but I figured you’d be able to recognise it). Is that right? I was curious if this was tied to the installer tool or your app’s use of that tool, so I opened that package with the Installer app and tried to install it. It failed in a similar fashion. Does that match your expectations? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Nov ’25
Reply to ITMS-90081 with Xcode 10 (10A254a)
The error is caused by Firebase. Removing the package and uploading successfully. Resolved! I removed all auxilary Firebase products, including Crashlytics, only FirebaseAnalytics left. And it uploads!
Replies
Boosts
Views
Activity
Jun ’22
Reply to dyld: Library not loaded
My apologies. I was looking at the wrong folder instead of the Products folder. So when I look into the app by choosing Show Package Contents, I can do see the TCore framework inside the Frameworks folder actually.
Replies
Boosts
Views
Activity
May ’22
Why does "NSArray *product = response.products" return no product?
In sandbox testing, I was able to get auto-renewing subscription to work, but decided to switch to one-time in-app purchase. I've read many how-to's, but I'm missing something. My app has Bundle ID com.myname.id1 and IAP capability added. The IAP has Product ID com.myname.id2. My agreements are up-to-date (auto-renewing subscription worked). The In-App Purchases screen lists my IAP under Drafts (1); is this expected? [SKPaymentQueue canMakePayments] returns true. [[SKProductsRequest alloc] initWithProductIdentifiers:set] (where set contains com.myname.id2) responds to [request start]. In the delegate, NSArray *product = response.products comes back empty. Does the IAP have its own Bundle ID? What am I doing wrong? What have I not told you that's important? I've been stuck for a few days on this. Thanks!
Replies
3
Boosts
0
Views
963
Activity
Mar ’23