Posts

Post not yet marked as solved
1 Replies
274 Views
Apple automatically refunds the prorated amount on the original subscription after it is upgraded. Since upgrades happen immediately and start a new billing cycle beginning from the day of upgrade, the previous original subscription is refunded for the prorated amount. Is there any way to retrieve the amount that was refunded by Apple? The transaction that was upgraded is marked with isUpgraded flag to true but the price field on it still shows the full amount and there is no App Store Server Notification that tells us how much was the refund. How do I get the refunded amount?
Posted
by kalehv.
Last updated
.
Post not yet marked as solved
0 Replies
191 Views
I am developing a macOS app with SwiftUI which adds a generic password to the keychain. I have a unit test that tests my keychain utility function (see below). The unit test that covers this function always throws the error on Xcode Cloud but works perfectly fine locally on my mac. let query = [ kSecClass: kSecClassGenericPassword, kSecAttrService: service, kSecAttrAccount: account, kSecValueData: passwordData, ] let added = SecItemAdd(insert as CFDictionary, nil) guard added == errSecSuccess else { throw error }
Posted
by kalehv.
Last updated
.
Post marked as solved
1 Replies
559 Views
Xcode 11.3.1macOS Catalina 10.15.3I am getting this error when I try building appFailed to find or create execution context for description '<IBCocoaTouchPlatformToolDescription: 0x7fd283181f90> System content for IBCocoaTouchFramework-ThirteenAndLater <IBScaleFactorDeviceTypeDescription: 0x7fd283187160> scaleFactor=2x'.So far I have tried rebooting, killing CoreSimulator process, cleaning build folder, deleting derived data but nothing has helped.This error shows for SwiftUI as well as UIKit apps. I am not able to build any app on Xcode
Posted
by kalehv.
Last updated
.