Search results for

“missing package product”

52,933 results found

Post

Replies

Boosts

Views

Activity

Reply to Bundle Identifier Change Core Data Lost
This took me a while to figure out but here is how I fixed the issue.1. Change your product name under Build Settings -> Packaging -> Product Name to the desired product name. This will change you Bundle Identifier to the desired name.2. Clean your project by selecting Product -> Clean.3. Select your CoreData model in the project navigator and then select the Data Model Inspector in the Inspector tab. Change the project name under class to the new class name. I got stuck here since I did not know Spaces, dashes, . are all replaced by underscores. You can see that my Product Name is FLO-Cycling and the CoreData class is FLO_Cycling.4. If you have imported the Swift bridging header file anywhere make sure to update it.I hope this can help someone.Take care,Jon
Jun ’15
Package platforms not working
I am writing a package in Swift using Xcode 16.1 (swift-tools-version: 6.0) and am trying to use features that became available in later versions of macOS and iOS. The following line naturally causes a compiler error when compiling against 'My Mac': let match = test-string.firstMatch(of: /-(.+)/)! 'firstMatch(of:)' is only available in macOS 13.0 or newer I can of course fix this by using @available(macOS 13.0, *), but there are dozens of methods and I would prefer to use the platforms property in the Package file like this: platforms: [ .macOS(.v10_13), .iOS(.v16) ], However for reason that are not clear, this does not work and the compiler errors remain. I have tried cleaning, removing derived data etc. What I am doing wrong?
2
0
483
Dec ’24
Invalid product with id
Hi,I have this problem when i try to get products:2017-09-28 12:06:33.990805+0200 InAppPurchases[3546:1660532] RMStore: products request received response 2017-09-28 12:06:33.990956+0200 InAppPurchases[3546:1660532] RMStore: invalid product with id singolaPartitaSerieCAnyone can help me?Thanks
1
0
619
Sep ’17
singing pkg. and submission using transporter
I spend days figuring out the proper steps to make it work. Can anyone give hints? Using xcode's Manage Certificate I'm creating a Mac Installer Distribution certificate but while I run the command security find-identity -p codesigning -v I see nothing. However, if I create any other certificate I can see it using that command. Due to the problem with cert generation I receive an error in Transporter : The product archive package's signature is invalid. Ensure that it is signed with your 3rd Party Mac Developer Installer certificate I already deleted all and recreated it using xcode, and also created using https://developer.apple.com/account/resources/certificates/list and downloaded it. What should I do?
1
0
574
Mar ’23
.pkg still says 'unidentified developer' after Productsign
Hi all, anyone with experience in signing .pkg files for distribution OUTSIDE of the App Store?I'm aware this isn't the right forum, but I couldn't see an appropriate section -sorry in advance.Set up the required private key and installer certificates through the Apple Dev site.Created a .pkg with the WhiteBox Packages software.Note: the content is NOT a standard .app file - it is a set of 3 plug-in files: .component, .vst, and .vst3, which are each moved into their required location upon install.(During this stage, I used the 'identifier' provided on the Apple Dev site: e.g com.companyname.productname)Built the .pkg with no issues.Signed the .pkg using the terminal command:productsign --sign developer-ID-number /path-to-file/xyz.pkg /path-to-new-file/xyz_signed.pkgThis was successful, and the correct information comes up when using the pkgutil --check-signature command.The signed .pkg works perfectly when not quarantined, and behaves as expected.However,
2
0
837
Jun ’15
"Package.resolved" Error with local packages
Let's say you're creating two packages on a local drive, package 'A' and package 'B'. Is it possible, in A's Package.swift file to read (from a JSON or XML file) the path to B, and then add it as a Package.Dependency? I've written my Package.swift script to do so (actually I'm resolving an alias file instead of getting the path from JSON). The problem is: although A's script definitely can read the correct relative path to B (I've logged it to the console and it's fine), no matter what I do, the build always errors out: the Package.resolved file is most likely severely out-of-date and is preventing correct resolution; delete the resolved file and try again This happens so reliably that I assume it's either the (1) script timing out, or (2) some kind of sand-boxing. Either way, the message is pretty useless. I've checked .swiftpm and I see no trace of any Package.resolved file. Deleting .swiftpm doesn't fix the issue. Can anyone shed some light? I'm out of ideas.
2
0
1.3k
Jun ’20
SPM Build tool not running when adding package to project
I have created a new project and added this Swift Package to it: https://github.com/laevandus/SwiftExampleToomasKit If I build the project it fails to compile the SPM Package saying MyGeneratedEnum is missing. This enum is generated by build tool attached to the plugin. If I open the Package.swift for the above repo and build, the enum gets generated and the framework compiles as it should. Any idea why the build tool is not executed when attaching the package to an iOS project ?
0
0
659
Mar ’23
.app is alright but .pkg file can't be uploaded.
macOS 10.15.5 Pycharm 2019.3.4 PyQt 5.14.0 Before packaging into .app, I installed certificates and bundled Add ID...everything was normal and .app run correctly. Then I tried to generate a .pkg file: productbuild --product path/to/info.plist --component path/of/My.app /Applications path/to/save/My.pkg things went weird. Transporter says it Failed to get App Bundle ID, while Application Loader 3.7.2 says The Info.plist indicates a Mac app, but submitting an ipa. Whai should I try to fix this? Since PyQt5 is getting popular for Mac Developers, I guess at least my issues will help others. Thank you everybody!!!!!
1
0
442
Jul ’20
Unable to expand package by the Application Loader
Hi,I want to upload our software to the Apple Store. Although it is not an easy task, I managed to fill all the required fields but I get stuck at uploading our software. When using the Application Loader in Xcode to upload our PKG (created by Packages, a program from Stephan Sudre) the following message appears:The package could not be unpacked because of the following error: Unable to expand package. Please make sure /Users/renedekruijf/Documents/BIMcollab ZOOM 1.0 r3.pkg is a valid installer package.I tried a number of things but I cannot find the reason why Application loader is unable to expand my package!Our program is freeware and you can download it from our own website at http://www.bimcollab.com/downloads/BIMcollab_ZOOM_1-0-7-30.dmgI appreciate it a lot if anyone can help me...Regs, René
0
0
567
Apr ’18
Reply to Bundle Identifier Change Core Data Lost
This took me a while to figure out but here is how I fixed the issue.1. Change your product name under Build Settings -> Packaging -> Product Name to the desired product name. This will change you Bundle Identifier to the desired name.2. Clean your project by selecting Product -> Clean.3. Select your CoreData model in the project navigator and then select the Data Model Inspector in the Inspector tab. Change the project name under class to the new class name. I got stuck here since I did not know Spaces, dashes, . are all replaced by underscores. You can see that my Product Name is FLO-Cycling and the CoreData class is FLO_Cycling.4. If you have imported the Swift bridging header file anywhere make sure to update it.I hope this can help someone.Take care,Jon
Replies
Boosts
Views
Activity
Jun ’15
Package platforms not working
I am writing a package in Swift using Xcode 16.1 (swift-tools-version: 6.0) and am trying to use features that became available in later versions of macOS and iOS. The following line naturally causes a compiler error when compiling against 'My Mac': let match = test-string.firstMatch(of: /-(.+)/)! 'firstMatch(of:)' is only available in macOS 13.0 or newer I can of course fix this by using @available(macOS 13.0, *), but there are dozens of methods and I would prefer to use the platforms property in the Package file like this: platforms: [ .macOS(.v10_13), .iOS(.v16) ], However for reason that are not clear, this does not work and the compiler errors remain. I have tried cleaning, removing derived data etc. What I am doing wrong?
Replies
2
Boosts
0
Views
483
Activity
Dec ’24
Invalid product with id
Hi,I have this problem when i try to get products:2017-09-28 12:06:33.990805+0200 InAppPurchases[3546:1660532] RMStore: products request received response 2017-09-28 12:06:33.990956+0200 InAppPurchases[3546:1660532] RMStore: invalid product with id singolaPartitaSerieCAnyone can help me?Thanks
Replies
1
Boosts
0
Views
619
Activity
Sep ’17
singing pkg. and submission using transporter
I spend days figuring out the proper steps to make it work. Can anyone give hints? Using xcode's Manage Certificate I'm creating a Mac Installer Distribution certificate but while I run the command security find-identity -p codesigning -v I see nothing. However, if I create any other certificate I can see it using that command. Due to the problem with cert generation I receive an error in Transporter : The product archive package's signature is invalid. Ensure that it is signed with your 3rd Party Mac Developer Installer certificate I already deleted all and recreated it using xcode, and also created using https://developer.apple.com/account/resources/certificates/list and downloaded it. What should I do?
Replies
1
Boosts
0
Views
574
Activity
Mar ’23
iCloud sync doesn't work in production.
I'm using CoreData+CloudKit. It works fine in development, so I deployed to production. But I cannot see the data in CloudKit DataBase in a testflight version. I don't know where I missed. Can I just run in Release mode to check it works?
Replies
1
Boosts
0
Views
702
Activity
Apr ’24
.pkg still says 'unidentified developer' after Productsign
Hi all, anyone with experience in signing .pkg files for distribution OUTSIDE of the App Store?I'm aware this isn't the right forum, but I couldn't see an appropriate section -sorry in advance.Set up the required private key and installer certificates through the Apple Dev site.Created a .pkg with the WhiteBox Packages software.Note: the content is NOT a standard .app file - it is a set of 3 plug-in files: .component, .vst, and .vst3, which are each moved into their required location upon install.(During this stage, I used the 'identifier' provided on the Apple Dev site: e.g com.companyname.productname)Built the .pkg with no issues.Signed the .pkg using the terminal command:productsign --sign developer-ID-number /path-to-file/xyz.pkg /path-to-new-file/xyz_signed.pkgThis was successful, and the correct information comes up when using the pkgutil --check-signature command.The signed .pkg works perfectly when not quarantined, and behaves as expected.However,
Replies
2
Boosts
0
Views
837
Activity
Jun ’15
Reply to How do I specify a Mac App Icon for a Catalyst App?
Talk about obscure. I especially appreciate having my time wasted by the Xcode validation process's reporting success and uploading the whole product, only to be told on submission that an obvious item is missing.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’20
Reply to Apple product icons for use within the app
Is it really a SwiftUI question ?Here are all the icons to use for Apple products (not SF symbols, just images):https://developer.apple.com/app-store/marketing/guidelines/#section-productsWhat do you miss there ?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’20
Reply to Create In-App Purchase fails with "Only alphanumeric characters allowed" validation error for Product ID
Answering myself -- apparently this was a bug in app store connect, because as of today, I was able to create an IAP with a product ID with dots in it as expected. I did not see any acknowledgement of the issue from Apple, but maybe I missed it.
Replies
Boosts
Views
Activity
May ’22
"Package.resolved" Error with local packages
Let's say you're creating two packages on a local drive, package 'A' and package 'B'. Is it possible, in A's Package.swift file to read (from a JSON or XML file) the path to B, and then add it as a Package.Dependency? I've written my Package.swift script to do so (actually I'm resolving an alias file instead of getting the path from JSON). The problem is: although A's script definitely can read the correct relative path to B (I've logged it to the console and it's fine), no matter what I do, the build always errors out: the Package.resolved file is most likely severely out-of-date and is preventing correct resolution; delete the resolved file and try again This happens so reliably that I assume it's either the (1) script timing out, or (2) some kind of sand-boxing. Either way, the message is pretty useless. I've checked .swiftpm and I see no trace of any Package.resolved file. Deleting .swiftpm doesn't fix the issue. Can anyone shed some light? I'm out of ideas.
Replies
2
Boosts
0
Views
1.3k
Activity
Jun ’20
SPM Build tool not running when adding package to project
I have created a new project and added this Swift Package to it: https://github.com/laevandus/SwiftExampleToomasKit If I build the project it fails to compile the SPM Package saying MyGeneratedEnum is missing. This enum is generated by build tool attached to the plugin. If I open the Package.swift for the above repo and build, the enum gets generated and the framework compiles as it should. Any idea why the build tool is not executed when attaching the package to an iOS project ?
Replies
0
Boosts
0
Views
659
Activity
Mar ’23
Xcode Package Upload Error
I am getting the following error when trying to submit a package to iTunesConnect. Unable to process validateAssets request at this time due to a general error (1017) Any issues in Apple?
Replies
1
Boosts
0
Views
755
Activity
Oct ’20
Resolving package graph on every change
Out iOS app consists of a main project and several swift packages under a workspace. Every time I open the workspace, I end up with Xcode 14 being unusable for 10+ seconds, being stuck on Resolving package graph Adding/renaming/deleting files to any of the swift packages we have seems to trigger this as well. Has anyone experienced this as well?
Replies
7
Boosts
0
Views
3.8k
Activity
Dec ’22
.app is alright but .pkg file can't be uploaded.
macOS 10.15.5 Pycharm 2019.3.4 PyQt 5.14.0 Before packaging into .app, I installed certificates and bundled Add ID...everything was normal and .app run correctly. Then I tried to generate a .pkg file: productbuild --product path/to/info.plist --component path/of/My.app /Applications path/to/save/My.pkg things went weird. Transporter says it Failed to get App Bundle ID, while Application Loader 3.7.2 says The Info.plist indicates a Mac app, but submitting an ipa. Whai should I try to fix this? Since PyQt5 is getting popular for Mac Developers, I guess at least my issues will help others. Thank you everybody!!!!!
Replies
1
Boosts
0
Views
442
Activity
Jul ’20
Unable to expand package by the Application Loader
Hi,I want to upload our software to the Apple Store. Although it is not an easy task, I managed to fill all the required fields but I get stuck at uploading our software. When using the Application Loader in Xcode to upload our PKG (created by Packages, a program from Stephan Sudre) the following message appears:The package could not be unpacked because of the following error: Unable to expand package. Please make sure /Users/renedekruijf/Documents/BIMcollab ZOOM 1.0 r3.pkg is a valid installer package.I tried a number of things but I cannot find the reason why Application loader is unable to expand my package!Our program is freeware and you can download it from our own website at http://www.bimcollab.com/downloads/BIMcollab_ZOOM_1-0-7-30.dmgI appreciate it a lot if anyone can help me...Regs, René
Replies
0
Boosts
0
Views
567
Activity
Apr ’18