Sagar Choudhary
Sagar Choudhary

Reputation: 73

Flutter app login issue on specific Samsung devices despite successful testing

I'm encountering an unusual issue with login functionality in my Flutter app, specifically on certain Samsung devices. Despite thorough testing on multiple Android (Realme, Redmi, Pixel, Samsung, Moto) and iOS models, login works flawlessly on my end. However, some users are reporting login failures exclusively on Samsung devices.

Here are some key details:

Has anyone encountered a similar issue with login failures specifically on Samsung devices, even after successful testing on similar models? Are there any known device-specific factors or troubleshooting steps I might be overlooking that could help resolve this discrepancy?

I found this on GitHub (something like I'm facing), but it's an old and not have any solution. Link: https://github.com/flutter/flutter/issues/43257

Any insights or suggestions would be greatly appreciated. Thanks in advance!

Upvotes: 2

Views: 519

Answers (2)

khush pajwani
khush pajwani

Reputation: 303

can you put your Http log here? What is the issue when API is called? Run your app in release mode on a Samsung testing device are you able to reproduce the issue?

Yes also please check all the manifest file they contain internet permission or not?

Upvotes: 3

Muzamil Khan
Muzamil Khan

Reputation: 21

If you are using firebase for login functionality so you need to do the following:

  1. Enable App Check in firebase
  2. If you publish app already to play store, so get your SHA-1, and SHA-256 keys from there, and put those in firebase project.
  3. If you havent publish app yet to playstore, so you need to do the following: goto android folder and run ./gradlew signingReport, get sha keys and place in firebase

if you still face issue, feel free to ask, and share some more details about issue, like what type of login are you implementing, which package are you using etc.

Thanks

Upvotes: 2

Related Questions