Search results for

“missing package product”

53,788 results found

Post

Replies

Boosts

Views

Activity

Reply to In-App Purchases: Products vs Tiers
First, you don't need a different product for each country. You can localize the description. Second, yes, you can have only one 'product' at each price point and let the app describe the product. But then you lose some flexibility in being able to change the price of a product. You could have your app reference your website to get the description if that is an issue.
Jul ’16
Reply to Swift Package with Resources – Upload issue
OK. It's working fine. What I did not understand was that I needed to change the Info.plist file that was located *inside* the archive. I initially thought it was supposed to be somewhere in the Package. So the process is: Create an archive and select it in Xcode Organizer. Show in Finder. Open package contents. Go down the Folder structure (Products -> Application) until you find your .app file. Again, show package contents. There should be your package .bundle file. Again show package contents. Here you should see the Info.plist file. Open it in Xcode and remove the Executable file entry. Save and return to Xcode Organizer. Now you can Distribute the app.
Jul ’20
Reply to EAS build works in Expo Go & Simulator, TestFlight app crashes on open
Solved this one myself, but for anyone experiencing an operator() crash, be sure to read through the react navigation docs, then find exactly which part of react navigation you used (ie. Stack, Drawer, etc) as there can be some additional packages to add to ensure it runs cleanly on TestFlight. My problem was one missing package that needed to be added.
Jul ’22
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
Swift executables in installer packages (.pkg) preinstall/postinstall
It seems that preinstall/postinstall scripts in installer packages (.pkg) are not limited to shell scripts, but can be any kind of executable (e.g. compiled Swift programs). This sounds like an exciting possibility to re-use logic, constants, tests etc. from the app that is being installed, and at the same time benefit from Swift features like type safety for complex installer scripts. Has anyone done this? What were your experiences? Is it advisable, or is it likely to break on the next OS update?
2
0
360
Nov ’24
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
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
970
Mar ’23
Reply to Upload Symbols Failed on Xcode 16
Easy Fix Locate the missing.framework in your Flutter app *Missing is the name of missing DSYM find ~/Library/Developer/Xcode/DerivedData -name missingframework | grep -v SourcePackages Generate the dSYM file manually xcrun dsymutil -o ~/Desktop/missing.framework.dSYM /path/to/found/missing.framework/missing Find your recent archive Go to Xcode > Window > Organizer Right-click on your most recent archive and select Show in Finder Right-click on the .xcarchive file and select Show Package Contents Navigate to dSYMs folder Copy the generated dSYM** Copy the generated Razorpay.framework.dSYM file from your Desktop Paste it into the dSYMs folder in your .xcarchive package Retry uploading or validating*
Mar ’25
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
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
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
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
Reply to In-App Purchases: Products vs Tiers
First, you don't need a different product for each country. You can localize the description. Second, yes, you can have only one 'product' at each price point and let the app describe the product. But then you lose some flexibility in being able to change the price of a product. You could have your app reference your website to get the description if that is an issue.
Replies
Boosts
Views
Activity
Jul ’16
Reply to Swift Package with Resources – Upload issue
OK. It's working fine. What I did not understand was that I needed to change the Info.plist file that was located *inside* the archive. I initially thought it was supposed to be somewhere in the Package. So the process is: Create an archive and select it in Xcode Organizer. Show in Finder. Open package contents. Go down the Folder structure (Products -> Application) until you find your .app file. Again, show package contents. There should be your package .bundle file. Again show package contents. Here you should see the Info.plist file. Open it in Xcode and remove the Executable file entry. Save and return to Xcode Organizer. Now you can Distribute the app.
Replies
Boosts
Views
Activity
Jul ’20
Reply to EAS build works in Expo Go & Simulator, TestFlight app crashes on open
Solved this one myself, but for anyone experiencing an operator() crash, be sure to read through the react navigation docs, then find exactly which part of react navigation you used (ie. Stack, Drawer, etc) as there can be some additional packages to add to ensure it runs cleanly on TestFlight. My problem was one missing package that needed to be added.
Replies
Boosts
Views
Activity
Jul ’22
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
Swift executables in installer packages (.pkg) preinstall/postinstall
It seems that preinstall/postinstall scripts in installer packages (.pkg) are not limited to shell scripts, but can be any kind of executable (e.g. compiled Swift programs). This sounds like an exciting possibility to re-use logic, constants, tests etc. from the app that is being installed, and at the same time benefit from Swift features like type safety for complex installer scripts. Has anyone done this? What were your experiences? Is it advisable, or is it likely to break on the next OS update?
Replies
2
Boosts
0
Views
360
Activity
Nov ’24
Reply to ios14 "Notifications are not allowed" ERR
In my case, Build Settings - Packaging - Product Name was not English. Changed to English and worked. It was okay to set the name in other languages in iOS 13 though.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’20
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
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
970
Activity
Mar ’23
Reply to Upload Symbols Failed on Xcode 16
Easy Fix Locate the missing.framework in your Flutter app *Missing is the name of missing DSYM find ~/Library/Developer/Xcode/DerivedData -name missingframework | grep -v SourcePackages Generate the dSYM file manually xcrun dsymutil -o ~/Desktop/missing.framework.dSYM /path/to/found/missing.framework/missing Find your recent archive Go to Xcode > Window > Organizer Right-click on your most recent archive and select Show in Finder Right-click on the .xcarchive file and select Show Package Contents Navigate to dSYMs folder Copy the generated dSYM** Copy the generated Razorpay.framework.dSYM file from your Desktop Paste it into the dSYMs folder in your .xcarchive package Retry uploading or validating*
Replies
Boosts
Views
Activity
Mar ’25
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
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
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
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
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