Posts

Post not yet marked as solved
10 Replies
Same. iOS 17.2 I will reinstall Xcode the other solutions didn't make the trick.
Post not yet marked as solved
3 Replies
Found the answer in another site quoting: It might be because you have an NSLocalizedString with a tableName: parameter matching the name of a storyboard. In other words, if you have a Main.storyboard and NSLocalizedString(“Blah”, tableName: “Main”, comment: “...”) then you’ll probably get this error. The full post on: https://www.wooji-juice.com/blog/random-dev-xcode-loc-export.html
Post not yet marked as solved
7 Replies
I have the same problem Im trying with (in non-consumable purchase): do {       let receipt = try InAppReceipt.localReceipt()       let purchased = receipt.containsPurchase(ofProductIdentifier: productId)       completion(.success(purchased))     } catch {       print(error)       completion(.failure(error))     } but nothing
Post not yet marked as solved
14 Replies
Same issue, any updates?