flutter stripe gives issues on some devices

83 Views Asked by At

I'm using flutter_stripe: ^9.5.0+1 and

    void main() async {
        WidgetsFlutterBinding.ensureInitialized();
        Stripe.publishableKey = stripePublishableKey;
        await Stripe.instance.applySettings();
        runApp(const MainApp());
    }

This is main app start point

after working on stripe payment when i build the app it gets installed on all devices but doesn't open on some devices and stuck on black screen whereas it runs normally on some devices

I tried changing multiple configuration on manifest file and build.gradle file reading solution from stackoverflow. but nothing works

0

There are 0 best solutions below