Skip to content

Instantly share code, notes, and snippets.

@joshdholtz
Last active January 10, 2024 18:48
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshdholtz/3f26a6f06b86d2452d4180182876d824 to your computer and use it in GitHub Desktop.
Save joshdholtz/3f26a6f06b86d2452d4180182876d824 to your computer and use it in GitHub Desktop.
import React, { useEffect, useState } from 'react';
import { Platform, Text, View } from 'react-native';
import Purchases, { PurchasesOffering } from 'react-native-purchases';
const APIKeys = {
apple: "your_revenuecat_apple_api_key",
google: "your_revenuecat_google_api_key",
};
export default function App() {
const [currentOffering, setCurrentOffering] = useState<PurchasesOffering | null>(null);
useEffect(() => {
const setup = async () => {
if (Platform.OS == "android") {
await Purchases.configure({ apiKey: APIKeys.google });
} else {
await Purchases.configure({ apiKey: APIKeys.apple });
}
const offerings = await Purchases.getOfferings();
setCurrentOffering(offerings.current);
};
Purchases.setDebugLogsEnabled(true);
setup()
.catch(console.log);
}, []);
if (!currentOffering) {
return "Loading...";
} else {
return (
<View>
<Text>Current Offering: {currentOffering.identifier}</Text>
<Text>Package Count: {currentOffering.availablePackages.length}</Text>
{
currentOffering.availablePackages.map((pkg) => {
return <Text>{ pkg.product.identifier }</Text>
})
}
</View>
);
}
}
@abbasldn
Copy link

abbasldn commented Sep 9, 2022

Going to have to render line 32 as <Text>Loading...</Text>

@redcartel
Copy link

the awaits on line 22 and 24 are a problem, I moved lines 20-25 into the beginning of fetchData and it worked fine.

@hehooleehoo
Copy link

Hey, thanks for this example! FYI there's an error on line 22. It should be await Purchases.configure({ apiKey: APIKeys.google });

@ansh
Copy link

ansh commented Dec 12, 2022

Yeah both the bugs reported by you folks are true @redcartel and @hehooleehoo

@NDsurfer8
Copy link

what would this look like in javascript

@Ctorum
Copy link

Ctorum commented Mar 19, 2023

what would this look like in javascript

the same, except for the type after useState, which you can just ignore in javascript,

@wanderhungerbuhler
Copy link

Would be very important if u put here which was version "react-native-purchases" u used.

I mean, because on the actually version "react-native-purchases": "^6.3.0" I am having problem and same with my configs OK no RevenueCat, always I have a return null or [].

Error: There is an issue with your configuration. Check the underlying error for more details. There are no products registered in the RevenueCat dashboard for your offerings. If you don't want to use the offerings system, you can safely ignore this message. To configure offerings and their products, follow the instructions in https://rev.cat/how-to-configure-offerings.
More information: https://rev.cat/why-are-offerings-empty

@tomsoderlund
Copy link

L26: Purchases.setLogLevel(LOG_LEVEL.DEBUG);

@symontech
Copy link

L26: Purchases.setLogLevel(LOG_LEVEL.DEBUG);

I needed this: Purchases.setLogLevel(Purchases.LOG_LEVEL.DEBUG);

@sebnun
Copy link

sebnun commented Dec 11, 2023

Purchases.configure is handled as a promise here, but the typescript typings shows it as having a void return type

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment