Skip to main content
Question

Struggling with migrating from Glassfy

  • December 4, 2024
  • 2 replies
  • 58 views

Forum|alt.badge.img

Hi all,

 

I am in process of migrating from Glassfy and im running into a lot of issue as the Guide from August is a little bit outdated? and only for Apple.

 

I am on the last stage, redoing the code from glassfy in my actual app code and first line first problem.

 

For reference, flutter, android, google play store only

 

Purchases.configure(withAPIKey: "YOUR_API_KEY")

There is not such thing as withAPIKey? - Struggling with finding solution and close to just giving premium to all users and not bothering with migrating :(

 

 

I got something like this from glassfy email reply, which i understand sadly 0 :( 

 

The app_user_id field, in your export, is empty because you don’t assign a Custom Identifier to the user: this should make migration easier.So if you want historical data you can server-side import into RC with an anonymous app_user_id.
When the user open the application for the first time with the RC SDK installed, a new random-id is automatically generated. To make sure that the two are merged, you can call the SDK method syncPurchases. You should ask confirmation of this to RevenueCat directly.Here you can find some useful reference:
https://www.revenuecat.com/docs/customers/user-ids
https://www.revenuecat.com/docs/getting-started/restoring-purchases
https://www.revenuecat.com/docs/migrating-to-revenuecat/migrating-existing-subscriptions

 

I don’t know where to start, where to continue, whether to follow migration guide or not.

 

Thank you for help!

 

This post has been closed for comments

2 replies

Forum|alt.badge.img+3
  • RevenueCat Staff
  • 44 replies
  • December 5, 2024

Hi ​@barmem 

Hope I can help. The guide from August references our iOS Swift SDK which isn’t what you’re using. We should make that clearer for sure. 

To configure with our Flutter SDK, you can do:

PurchasesConfiguration configuration = PurchasesConfiguration("myAPIKey");

PurchasesConfiguration configuration = PurchasesConfiguration("myAPIKey");
Purchases.configure(configuration);

You can see more examples on how to configure for our Flutter SDK from our tester app: https://github.com/RevenueCat/purchases-flutter/blob/main/revenuecat_examples/purchase_tester/lib/main.dart

Feel free to reply to this thread if you have more questions.


Forum|alt.badge.img
  • Author
  • New Member
  • 1 reply
  • December 7, 2024

Hi, Thanks for help i made it work using this code below.

 

  static Future<void> init() async {
    final connection = InAppPurchase.instance;
    final isBillingAvailable = await connection.isAvailable();

    if (isBillingAvailable) {
      try {
        await Purchases.setLogLevel(LogLevel.debug);
        await Purchases.configure(PurchasesConfiguration(_apiKey));
      } catch (e) {
        debugPrint("Error during RevenueCat initialization: $e");
      }
    } else {
      debugPrint("Billing is not available on this device.");
      // Handle the error, e.g., show a user message
    }
  }

 


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings