Skip to main content
Question

[URGENT HELP] :: Getting this Error on Prod and app crashes on launch.

  • February 16, 2026
  • 1 reply
  • 0 views

Forum|alt.badge.img+4

java.lang.NoSuchMethodError: No static method configure(Landroid/content/Context;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/revenuecat/purchases/common/PlatformInfo;Lcom/revenuecat/purchases/Store;Lcom/revenuecat/purchases/DangerousSettings;Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/String;)V in class Lcom/revenuecat/purchases/hybridcommon/CommonKt; or its super classes (declaration of 'com.revenuecat.purchases.hybridcommon.CommonKt' appears in /data/app/~~FYWMBB2RNwMfSGeYJ27sOg==/com.myapp.myapp-4FgKj70kwbLDgFLKHfUN7A==/base.apk!classes5.dex)
                                                                                                        at com.revenuecat.purchases_flutter.PurchasesFlutterPlugin.setupPurchases(PurchasesFlutterPlugin.java:403)
                                                                                                        at com.revenuecat.purchases_flutter.PurchasesFlutterPlugin.onMethodCall(PurchasesFlutterPlugin.java:127)
                                                                                                        at io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(MethodChannel.java:267)
                                                                                                        at io.flutter.embedding.engine.dart.DartMessenger.invokeHandler(DartMessenger.java:292)
                                                                                                        at io.flutter.embedding.engine.dart.DartMessenger.lambda$dispatchMessageToQueue$0$io-flutter-embedding-engine-dart-DartMessenger(DartMessenger.java:319)
                                                                                                        at io.flutter.embedding.engine.dart.DartMessenger$$ExternalSyntheticLambda0.run(D8$$SyntheticClass:0)
                                                                                                        at android.os.Handler.handleCallback(Handler.java:995)
                                                                                                        at android.os.Handler.dispatchMessage(Handler.java:103)
                                                                                                        at android.os.Looper.loopOnce(Looper.java:248)
                                                                                                        at android.os.Looper.loop(Looper.java:338)
                                                                                                        at android.app.ActivityThread.main(ActivityThread.java:9067)
                                                                                                        at java.lang.reflect.Method.invoke(Native Method)
                                                                                                        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:593)

1 reply

Forum|alt.badge.img+2
  • RevenueCat Staff
  • February 16, 2026

Hi, happy to help here!

This sounds a lot like an internal dependency version mismatch between the Flutter SDK and the native (support) library it is dependent on (purchases-hybrid-common). 

Could you please tell me which version of the Flutter SDK you’re using, as well as the version of purchases-hybrid-common that was used? You can find this out by running the following inside your android folder:

./gradlew :app:dependencies | grep purchases-hybrid-common

It is important that the Flutter SDK version you’re using is compatible with the version of the purchases-hybrid-common that you’re using. See this version compatibility table for reference. You can always try updating to the latest version of the SDK to see if that resolves the issue for you.

Also, feel free to create a support ticket through the dashboard in case you’re still having issues.

Hope that helps!

Best,

Rick