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?
Search results for
missing package product
51,817 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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:
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
Topic:
App & System Services
SubTopic:
StoreKit
Tags:
Subscriptions
StoreKit
App Store Connect
In-App Purchase
I created an IAP and created it as Consumable instead of Non-Consumable so removed it.Now I can't re-add it because of the Product ID being taken.How do I re-use the Product ID?
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?
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
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
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
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
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store Connect
App Store Connect API
In-App Purchase
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 ?
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
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:
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.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
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
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Hi, how can I create a new package in a Xcode workspace? I develop for Linux but I like Xcode so I use it. I am a blind user, so I use VoiceOver if that matters.
Topic:
Developer Tools & Services
SubTopic:
Xcode