Hello,
My code below gets the following build errors.
- None of the following functions can be called with the arguments supplied.
- Cannot infer a type for this parameter. Please specify it explicitly.
I am copying from the Android set up guide and canβt see what I am doing wrong. Any guidance would be greatly appreciated.
fun attemptPurchase(inActivity: Activity, forPackage: Package) { Purchases.sharedInstance.purchasePackage(inActivity, forPackage, onError = { error, userCancelled -> println("Error ${error.localizedMessage}") }, onSuccess = { product, customerInfo -> } )}