Questions tagged [revenuecat]
203 questions
0
votes
1 answer
View Controller Not Instantiated After RevenueCat Purchase Confirmed
I have the following code to recognize when a user has made a purchase:
@objc func purchaseTapped(sender: UIButton) {
print("Tapped") // THIS PRINTS
let package = self.packagesAvailableForPurchase[sender.tag]
…

amirbt17
- 533
- 1
- 4
- 13
0
votes
1 answer
Flutter_Stripe Package not compatible with purchases_flutter ?- Result of updating to Flutter 3.0
I am getting the following version resolving error and I am wondering if anybody has an idea for a workaround?
Pub Spec
purchases_flutter: ^3.10.0
flutter_stripe: ^3.3.0
freezed_annotation: ^2.1.0
ERROR:
Because purchases_flutter 3.10.0…

Sport Apps Barcelona
- 51
- 6
0
votes
0 answers
Restore Purchase - RevenueCat webHook
So we get rid of all AppStore/PlayStore integration for processing payment and rely fully on RevenueCat webHook.
the main issue that we encounter so far is that when we have a restoreSubscription the RevenueCat webHook does't react also if user has…

Constantin Saulenco
- 2,353
- 1
- 22
- 44
0
votes
0 answers
RevenueCat empty Offerings
This is really frustrating. I followed every step carefully and even created service accounts multiple times and it's been weeks. None of the similar issues worked for me. I'm so confused on how to make this work. Uploaded bundle with BILLING…

nerdy kid
- 371
- 1
- 3
- 14
0
votes
2 answers
Header 'RevenueCat-Swift.h' not found & Could not build Objective-C module 'RevenueCat'
I integrated RevenueCat into an app written in Swift and SwiftUI. It worked all well until now.
All of the sudden Xcode throws these two errors when building the app:
Could not build Objective-C module 'RevenueCat'
At the import RevenueCat…

wildcard
- 896
- 6
- 16
0
votes
2 answers
Flutter/Revenuecat: Check if user has already bought something
i am currently building an app in Flutter using RevenueCat for the in-app-purchases.
I now want to know for each user, if he has already made an in-app-purchase, since I have trial subscriptions activated. I need this information, because I want to…

Sebb
- 121
- 2
- 10
0
votes
0 answers
Revenue Cat error thrown in Purchases.configure(withAPIKey: "my_api_key")
I am simply trying to configure Revenue Cat in my App Delegate's didFinishLaunchingOptions method with Purchases.configure(withAPIKey: "my_api_key") (as explained in the docs), but it keeps printing the following error...
‼️ Error fetching offerings…

Eric
- 569
- 4
- 21
0
votes
1 answer
Unable to Subscribe Again after manually deleting user on RevenueCat on iOS (Sandbox React Native)
I am using React Native. I successfully implemented purchase function and tested by using Sandbox. After I purchased on my test phone, I went into the RevenueCat dashboard and saw the new anonymous user as expected. I deleted this user on the…

halim chu
- 1
- 1
0
votes
0 answers
Flutter in app subscription migrating from Play Billing
I'm switching from Java to Flutter.
My actual Java app has about 100 subscribed users and I can't keep their subscription in Flutter using the official in_app_purchase plugin because it doesn't support the verification.
I'm looking for a solution so…

Giovanni
- 111
- 2
- 16
0
votes
1 answer
Revenue Cat Jetpack Compose Purchase Package
I'm trying to purchase a packages using the Revenue Cat SDK under JetPack Compose.
The SDK provides a function called PurchasePackage() (and PurchasePackageWith()) but all of these function's signatures require an Activity which I do not know how to…

DIJ
- 347
- 4
- 19
0
votes
1 answer
RevenueCat: How to get the purchaseToken in iOS
I need the purchaseToken for our server. This field exsits in the Android API,
/**
* Token that uniquely identifies a purchase.
*/
val purchaseToken: String,
And it is received upon purchase. But iOS API of the purchase function below doesn't…

Luda
- 7,282
- 12
- 79
- 139
0
votes
1 answer
Revenue Cat iOS - How do I validate purchases so that jailbroken iPhones can't crack the In App Purchase?
I just released an app for iOS and I used Revenue Cat to help with IAPs. I just found out that anyone with a jailbroken iPhone can make fake purchases that give them the "goods" without making a payment. Does Revenue Cat have a way to verify and…

Papi
- 255
- 1
- 2
- 13
0
votes
1 answer
RevenueCat multiple subscription buttons in SwiftUI
I followed this video: https://www.youtube.com/watch?v=0H2SdKf4ot0 which was immensely helpful in helping me get RC setup in my SwiftUI app. I was able to get purchasing working for a single subscription using a button:
VStack {
…

phiredrop
- 182
- 1
- 11
0
votes
2 answers
RevenueCat display price
I have the following code:
function Paywall({ onPress }) {
const getPrice = async () => {
try {
const offerings = await Purchases.getOfferings();
if (offerings.current !== null && offerings.current.availablePackages.length !==…

Gurmukh Singh
- 1,875
- 3
- 24
- 62
0
votes
2 answers
Flutter null check operator used on a null value flutter
I am trying to check if user make a payment or not.If payment is done, user will see homepage.If payment is not done User will see the payment page. The problem is that I am getting null check operator used on a null value. What I am doing…

cvsrt
- 357
- 4
- 19