Post not yet marked as solved
"Distribute App" fails.
I tried restarting it, but it doesn't seem to be solved at all.
What should i do?
It seems that there are two types of error messages.
"Error Analyzing App Version"
"App Store Connect Operation Error Unable to authenticate"
Post not yet marked as solved
When I am archiving my macOS app and try to push it to the AppStore via the Xcode Organizer, I get the message "unable to authenticate with App Store connect".I tried revoking all my certificates, checked the user access (admin, account owner), activated all outdated signing certs and profiles. Cleaned DerivedData, cleaned build fiolder, without any luck.Please advice, it should be an easy task to submit an app, right?
Post not yet marked as solved
This is my code for getting the local price and currency symbol.
private func getLocalCurrencyAndPrice(from product: SKProduct) -> (currency: String, price: Double) {
//Get the currency
let numberFormatter = NumberFormatter()
numberFormatter.numberStyle = .currency
numberFormatter.locale = product.priceLocale
let priceString = numberFormatter.string(from: 0)
let currencyString = ((priceString?.replacingOccurrences(of: "0", with: ""))?.replacingOccurrences(of: ".", with: ""))?.replacingOccurrences(of: ",", with: "")
let trimmedCurrency = currencyString?.trimmingCharacters(in: .whitespacesAndNewlines)
//Get the price
let price = (product.price.doubleValue).roundToDecimal(2)
return (currency: trimmedCurrency ?? "", price: price)
}
And this is how I am getting separate values:
let currency = getLocalCurrencyAndPrice(from: product).currency
let price = getLocalCurrencyAndPrice(from: product).price
I have created sandbox users for different App Store regions from the App Store Connect. It shows almost all regional prices and currency symbols perfectly except for Indonesia, Taiwan & Korea.
For Indonesia, on the "App Store Connect" It is showing Rp as their currency symbol: (Please ignore the differences in currency amount for now for all 3 countries)
But on the application, it is showing IDR:
For Taiwan, on the "App Store Connect" & on the application, It is showing $ as their currency symbol:
But on the "Settings > App Store > Sandbox User > Manage" & "Purchase Pop-Up view", it is showing NT$ as their currency symbol:
For Korea, on the "App Store Connect", "Settings > App Store > Sandbox User > Manage" & "Purchase Pop-Up view", It is showing ₩ as their currency symbol:
But on the application, it is showing ₩ with a double line:
Why these mismatches are showing while I am getting the value from the same source? What have I done wrongly?
Question link of Stackoverflow
Post not yet marked as solved
I have not been able to upload my app to App Store Connect using Xcode 13.2.1 for the past few hours.
Steps to reproduce the problem:
Windows > Organizer > Distribute App > App Store Connect > Upload
I have tried to repeat the process multiple times. Xcode would return different errors on each attempt:
Error Fetching App Record: App record request failed with error: "Unexpected Status Code"
App Store Connect Operation Error: Unable to authenticate
Post not yet marked as solved
Why is this being required for a non tvOS app?
Post not yet marked as solved
Hello guys!I was developing an app in my account and then I deleted the app from Itunes connect. Now I'm trying to delete the app id from indentifiers scetion but I can't. I got this error:The App ID 'xxxxxxxxxx' appears to be in use by the App Store, so it can not be removed at this time.But I deleted the app 5 minutes after I submitted to the store.I need to use this ID in another account, what can I do?Thank you!
Post not yet marked as solved
Hi,
I need to submit an app which uses biometric and email verification for sign in. What should be provided for the Sign-In Information when submitting this app for review?
The review team cannot sign in to this account even though I provide a username since email and biometric verification are required. Will the review team create accounts and test them?
Post not yet marked as solved
Hi,
My first app with IAP subscription was rejected the first time, in the second review it was approved and the status is Pending Developer Release, however, the subscription status is Developer Action Needed and the Submit for Review button is disabled.
Submit an in-app purchase for the first time "... scroll down to the In-App Purchases and Subscriptions section" that section is not shown.
I'm not sure how to solve this issue.
We are in the process of adding IAP to our application. We previously submitted the app for review and received a rejection notice to which we resolved each of the three criteria requested of us.
We then re-submitted the app for review again, however after submitting the app realized that the subscription were not submitted along with the app -- it is unclear if we need to do something to re-submit them or if we do not because they were submitted with the previous version that was rejected.
While trying to determine how to proceed, we attempted to cancel the review.
Now the app is in a stuck state - with various screens showing differing information.
The iOS App section in the nav bar shows: "Waiting for Review"
The screen when this version is clicked on shows: "You have an App Review submission cancellation in progress. You can resubmit items for review again after the cancellation is complete."
The App Review screen shows: "Processing"
It has been stuck in this same state for almost a week. What are possible solutions to move forward with an app review and get a timely update?
Note: We also submitted a support request but have not heard any update from this inquiry either.
Post not yet marked as solved
How to get info about the exact version that is used in a build that is going for AppStore publications? Is it one specified in "iOS Deployment Target" in Build Settings?
My iOS app is published on AppStore. And users with different iOS versions can install it (15.0, 15.1, ..., 15.5, ...). To my understanding, Apple frameworks and packages like SwiftUI, Foundation, Combine, etc. can have differences for different iOS versions.
Post not yet marked as solved
We are facing the this issue with our latest release. It includes time sensitive bug fixes and has been "In Review" for almost 2 weeks. Previous Releases were reviewed within 2 days max. We also requested expedited review and received an automated reply saying our app is now in expedited review queue. Is anyone having the same issue with their updates or is it just our app ?
Post not yet marked as solved
Same code using StoreKit 2 is working fine on iOS but, on WatchOS I can't fetch products. I also tried StoreKit config on local but no luck.
Did not receive any products or error for products request.
Loaded [] products
Error enumerating productid current transactions: Error Domain=ASDErrorDomain Code=509 "No active account" UserInfo={NSLocalizedDescription=No active account
Post not yet marked as solved
Hello,
I’ve a question about in app purchase.
I’ve an app to publish on the App Store and we are selling two plan of coaching services. User can unlock content from application AND access to external services like custom email with coaching advise, private community about our system
Must we used in app purchase in this case or a third party library ?
Post not yet marked as solved
I'm trying to add a user to app store connect but the email's are never received. They don't go into the junk folder and we can't find any issues on the firewall that would stop them. I'm not too sure what else I can do to try to add him?
I am going to submit a new app version and I can't see English (New Zealand) on the list. I have English (U.K), English (U.S.), English (Australia) but there is no localisation option for New Zealand, why? How am I going to add custom content for the Apple Store New Zealand? Is English (Australia) pointing to both Australia and New Zealand?
I only have one localized file in Xcode but in the app submission page I can see all English speaking countries.
Thanks.
Post not yet marked as solved
We have non-renewing and consumables items that we're selling on our app.
When an in-app purchase completes successfully, does apple trigger any notification to the server?
Because it's not working in our case. We've added server notification URL for both sandbox and live, but when an in-app purchases happens the provided URL is not hit.
Are there any webhooks or events I can listen to to update server state when an in-app purchase happens?
Thank you.
Post not yet marked as solved
I encountered the following issue without App or Server update.
As the result (SKProductsResponse) of SKProductsRequest with my Product IDs, empty request.products was returned in the delegate of requestDidFinish.
These subscription items are valid, so it will not be returned empty, but the error has occured during the following OS versions.
Also, there was no notification in didFailWithError of SKProductsRequest.
Details
Billing failure (>= iOS 15.4)
SKProductsResponse.products: empty
SKProductsResponse.invalidProductIdentifiers: contain the requested Product IDs
Billing success (<= iOS 15.3)
SKProductsResponse.products: contain the requested Product IDs
SKProductsResponse.invalidProductIdentifiers: empty
OS versions
The issue occurs with the following OS versions.
iOS 15.4.x
iOS 15.5.x
note: cannot confirmed the issue with iOS 15.3 or lower so far.
Anyone can help?
Post not yet marked as solved
Hi all.I have an annoying issue with iTC. I can’t leave itc tab without activity even for 10 minutes, it is logging out. I can switch to it, make corrections and when I’m clicking Save – everything is gone, because itc is logged out.Is it possible to keep me in system until I press logout by myself?
Post not yet marked as solved
Hey,
This question is related with Apple Books.
We have an app that shows book cover images like Apple Books does.
We see Apple Books app having different kinds of banner stuffs above the book cover image. We are thinking to have same kind of feature in our own app.
Is that free to do or we need to take consent from anyone?
Did Apple Books had to take any kind of consents from anyone?
Anyones response is highly appreciated.
Post not yet marked as solved
Hi all. Who knows how soon the money goes to the bank account after the apple has paid the money?