missing package product

47,369 results found

Post

Replies

Boosts

Views

Activity

Reply to SwiftUI Preview Runtime linking failure
No it's private package. In our package, We have several 3rd party maps and these maps are compiled with the predefined settings in Xcode and the google map is one of them. Due to security reasons, we cannot share the internal structure. However, when Google Maps is required, it is added as a target in the project, as shown below. static var google = PackageDescription.Package.Dependency.package( url: https://github.com/googlemaps/ios-maps-sdk.git, from: 8.4.0 ) ... ... ... static var google: [PackageDescription.Target] = [ .target( name: .google, dependencies: [ .byName(name: .core), .product(name: GoogleMaps, package: ios-maps-sdk), .product(name: GoogleMapsBase, package: ios-maps-sdk), .product(name: GoogleMapsCore, package: ios-maps-sdk) ], resources: [ .copy(Theme/dark.json) ] ) ]
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2w
Reply to ios app products are only permitted in swift playground packages error
It sounds like the package you forked from was made for use in Swift Playgrounds! That means it will have an iOSApplication product, which is only usable in the context of a Swift Playgrounds application. If you add the .swiftpm file extension to the folder that contains the package, you can open it in Swift Playgrounds or Xcode and use it as intended. If you don't use the iOS application product and don't want it, you can edit your Package.swift to remove it from the list of products.
Oct ’24
Altool: Error: Could not determine the package’s bundle ID. The package is missing an Info.plist or the CFBundlePackageType is not ‘APPL’ or ‘FMWK’. Unable to validate your application. (-21017)
Hi, I'm trying to build and upload an iOS app from the command line but when using altool to upload the IPA file, i get the following error: Error: Could not determine the package’s bundle ID. The package is missing an Info.plist or the CFBundlePackageType is not ‘APPL’ or ‘FMWK’. Unable to validate your application. (-21017) I'm building the app with the following steps: xcodebuild archive -scheme MyApp -workspace ./ios/MyApp.xcworkspace -configuration Release -archivePath ~/Downloads/test.xcarchive xcodebuild -exportArchive -archivePath ~/Downloads/test.xcarchive -exportOptionsPlist ./ios/MyApp/exportOptions.plist -exportPath ~/Downloads/test.ipa altool --upload-app -f ~/Downloads/test.ipa --type ios -u REDACTED -p REDACTED My Info.plist actually has a CFBundlePackageType key with the APPL value. I noticed there is no Info.plist file in the output folder (~/Downloads/test.ipa/), but i'm not even sure it should have one. My exportOption.plist file loks like this: method app-sto
1
0
4.5k
May ’22
Reply to How to use dependencies in a Swift Package
Found my answer. In the target dependencies, need to include the package name as a string: // Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets can depend on other targets in this package, and on products in packages this package depends on. .target( name: DBCore, dependencies: [ AgileDB ]), .testTarget( name: DBCoreTests, dependencies: [DBCore]), ]
Apr ’22
Swift Package Manager - Package Download Issue
We have developed a custom iOS framework called PaySDK. Earlier we distributed the framework as PaySDK.xcframework.zip through GitHub (Private repo) with two dependent xcframeworks. Now, one of the clients asking to distribute the framework through Swift Package Manager. I have created a new Private repo in the GitHub, created the new release (iOSSDK_SPM_Test) tag 1.0.0. Uploaded the below frameworks as Assets and updated the downloadable path in the Package.Swift and pushed to the GitHub Main branch. PaySDK.xcframework.zip PaySDKDependentOne.xcframework.zip PaySDKDependentTwo.xcframework.zip When I try to integrate (testing) the (https://github.com/YuvaRepo/iOSSDK_SPM_Test) in Xcode, am not able to download the frameworks, the downloadable path is pointing to some old path (may be cache - https://github.com/YuvaRepo/iOSSDK_SPM/releases/download/1.2.0/PaySDK.xcframework.zip). Package.Swift: // swift-tools-version:5.3 import PackageDescription let package = Package( name: iOSSDK_SPM_
0
0
284
Jan ’25
PKG Generate
Hi, I made an application in JXA that I would like to distribute. 1. I downloaded and installed an installation certificate via my developer account, 2. I generated my PKG with the following distribution XML file: ```language code-block If I right click with the mouse and then open, the PKG runs. Is a tag missing in my XML? Do I need to generate another certificate? Thanks for your help
10
0
1.3k
May ’23
Reply to tvOS Upload Error ITMS-90471 Missing Images
Oh, I'm so both upset and relieved right now.TL;DRThe state of Xcode / Application Loader's underlying submission tool was corrupted. All I had to do* was delete the .itmstransporter folder in my home directory and try again. I no longer get cryptic validation errors when hitting Validate in Xcode, and I no longer get false missing images when submitting the app archive.*other than wasting valuable days of developement time searching for answers, trying every combo, and filing radars for the various failure cases *sigh*BackgroundThe real clue in all of this was the top of the log file, which showed something like this:An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.asperasupport [7]: Unable to resolve 7.0: missing requirement [7.0] package; (&(package=com.apple.transporter.transport.service)(version>=1.9.6)(version<=1.9.6)) [caused by: Unable to resolv
Nov ’17
Reply to In App Purchase max quantity
A) Sell the credits in packages and discount the larger packages.1 credit for $105 credits for $4525 credits for $20050 credits for $300B) have a set of products available for purchase but only display those products when the user has made previous purchases:User has no previous purchases: (show only products A and B) 1 credit for $10 (Product A) 10 credits for $100 (Product B) - limit quantity 2User has 25 previous purchases: (show only products C and D) 1 credit for $8 (Product C) 10 credits for $80 (Product D) - limit quantity 2User has 50 previous purchases: (show only products E and F) 1 credit for $6 (Product E) 10 credits for $60 (Product F)
Apr ’18