🥞
FoodZone
  • Multivendor/Stores App Setup in Flutter
  • Inside Packages
  • Application Installation
  • Admin Panel Installations
  • Restaurant owner Application
  • Driver Application
  • Google Map API and Google Place Picker API Setup
  • Firebase Push notification Configurations
  • Payment GateWay Integrations
  • Add proguard-rules.pro file for live Payment Key
  • Change Theme Color and Logo
  • Change Application Font
  • Change Application Name
  • Change Application Icon
  • Required things of admin panel and application
  • Billing & Invoice Functionality
  • How to Resolve Android Stripe Error?
  • Localization/Language Modification
  • How to add or delete the google Admob
  • Important links
  • Acknowledgment
Powered by GitBook
On this page

Was this helpful?

How to Resolve Android Stripe Error?

We have used flutter stripe payment.

PreviousBilling & Invoice FunctionalityNextLocalization/Language Modification

Last updated 4 years ago

Was this helpful?

How to resolve flutter stripe payment error on an android studio.

Some times due to different android studio version flutter stripe payment gives an error for the first time installation.

We are giving you the steps to resolve the stripe payment issues.

  • Open Only(I said only) Android project on android studio.

  • Clean and build project.

  • It will take time to download all build and gradles.

Some times it will generate flutter error for stripe packages.

you just press shift button two times on the android studio and search StripeDialod.kt and open the file.

You will see

dialog.setTitle(title)

You just have to replace it with the bellow code and your error will remove.

Build and run the project on actual device.

dialog?.setTitle(title)

How to resolve Stripe Payment Error.