Search results for

missing package product

51,817 results found

Post

Replies

Boosts

Views

Activity

Reply to Application Loader "There was a problem retrieving the metadata"
I actually have 2 problems:(1) Application Loader does not work (in the manner discussed here)(2) I have an in-app purchase product that has languished in the processing state for over 2 weeks.Today I received a suggestion from Apple that I rename the uploaded .pkg file for the in-app purchase product that is stuck in processing. Of course I cannot do this:(a) iTunesConnect will not let me delete the stuck .pkg file.(b) Back when Application Loader was working 2 weeks ago, I could not upload a replacement .pkg because there was already one there that was in the processing state.If either (a) or (b) could be surmounted, I still have the problem that everyone else on this thread has, which is that Application Loader is not communicating properly with the iTunesConnect server (or, more likely, the reverse).Naturally I spoke with a Senior Advisor today who is sorry that I feel the way that I do.These senior advisors are not trained to understand the issues and are not
Topic: App & System Services SubTopic: StoreKit Tags:
Mar ’17
StoreKit returning 0 products (IAPError: storekit_no_response)
Hi everyone, I’m facing an issue where StoreKit is returning 0 products from the App Store, even though my auto-renewable subscriptions are approved in App Store Connect. When calling queryProductDetails using Flutter’s in_app_purchase package (which uses StoreKit under the hood), StoreKit reports success but returns an empty list. The logs show the following error: IAPError(code: storekit_no_response, source: app_store, message: StoreKit: Failed to get response from platform.) InAppPurchase.isAvailable() returns true, but no product details are received. Already verified: • Subscriptions are approved in App Store Connect • Product identifiers in the app match those in App Store Connect exactly • In-App Purchase capability is enabled in Xcode • Paid Applications Agreement, banking, and tax details are active and complete • Using the latest version of the Flutter in_app_purchase package StoreKit should normally return the list of available products in the production
2
0
320
Nov ’25
My IAP product unavailable
I've published my app on appstore severel hours ago.however, my app doesn't appear on the search result of appstore. and it doesn't show IAP product list. and also my app failed to fetch Iap product information.the same build worked on sandbox mode. but it doesn't work on store build.How do I solve this? I double checked that iap product is approved.Any advice?
3
0
760
Dec ’17
How to create a new asset catalog in a package
I created a package using File > New > Package and now I want to add a new Asset Catalog to this package. With my package selected in the project navigator I select File > New > File but it creates a Swift file instead of showing the Template Selection dialog Ref: https://developer.apple.com/documentation/xcode/managing-assets-with-asset-catalogs#Create-a-new-asset-catalog
1
0
708
Jan ’24
swift package with arm64e
I use spm manage swift package, now i want my macos app support arm64e,so i add arm64e in Build Srtting -> Architectures. but i got error Could not find module 'SwiftyJSON' for target 'arm64e-apple-macos'; found: arm64-apple-macos, x86_64-apple-macos Apparently, if no limit in Package.swift, SPM will only compile versions for x86 and ARM64 architectures by default. now, how should I configure SPM to compile the arm64e version? thanks
5
0
392
Jul ’25
Set Value Of Product
I am setting up in app purchases in my app to remove ads. I am following a youtube tutorial. In the tutorial on line 3 it does not provide a value to product. I know that that is the product of removing the ads. However I don't know what to set that value as. I was told to do this: product = SKProduct(productID)But I got an error.Here is my code:class HomeViewController: UIViewController, SKPaymentTransactionObserver, SKProductsRequestDelegate { var product : SKProduct? var productID = NolanZ.Winer.removeads @IBAction func removeAds(_ sender: Any) { let payment = SKPayment(product: product!) //getting error here SKPaymentQueue.default().add(payment) } func getPurchaseInfo() { if SKPaymentQueue.canMakePayments() { let request = SKProductsRequest(productIdentifiers: NSSet(objects: self.productID) as! Set) request.delegate = self request.start() } } func productsRequest(_ request: SKProductsRequest, didReceive response: SKProductsResponse) { var products
4
0
1.6k
Nov ’18
Error: Product ID already in use
Hi everyone, I created an IAP When I filled a the information in the require database, my internet was broken. When the internet in working normally, I create it again (I didn't save it before I lost my internet) The system reported an error The Product ID you entered is already being used by another in-app purchase associated with this app. Question: Why can't I reuse a Product ID that I haven't saved before? Please reply to me soon, Thank you so much
1
0
1.5k
May ’24
'Float16' is unavailable in macOS when in swift package
Hello, I wrote a package with Float16 inside. When I compile a macos (13.x) app that includes this package, the compiler complains for unavailable Float16. However, If I compile the same code app with the code directly included (i.e. not in a package), everything is OK. It looks like the package is compiled for a macOS target < V11 despite the manifest specifies v13 Does anyone knows how to tell the SPM to use a specific version or as a workaround for tis issue ?
2
0
1.8k
Jan ’23
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
607
Sep ’17
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