Hi all,
Currently, we are trying to integrate StoreKit 2 in our app to get the list of products. we already follow what documentation do to implement it here:
let products = try await Product.products(for: identifiers)
return await products.map {
... // mapping to our type
}
But somehow, one of the SKU is missing and being filtered by the SDK. When we tried using StoreKit 1, the problematic SKU is being returned correctly.
Does anyone knows about this issue and how to fix it?