I can see in docs how to make Purchases with Kotlin like this:
1Purchases.sharedInstance.purchaseWith(2 PurchaseParams.Builder(this, aPackage).build(),3 onError = { error, userCancelled -> /* No purchase */ },4 onSuccess = { storeTransaction, customerInfo ->5 if (customerInfo.entitlements["my_entitlement_identifier"]?.isActive == true) {6 // Unlock that great "pro" content7 }8 }9)But how can I can the attribute of (aPackage) on line.2? Please answer with code if possible.
N.B: I have a 1 monthly subscription and I need to make when click on a button it directly opens Google default Paywall to make the purchase. So any other way to achieve this threw RevenueCat is appreciated.

