Skip to main content

How to add fingerprints for my android mobile || Redme add fingerprint

Solution:

1.swipe down the navigation bar on the top of your mobile

2.It will show you settings icon in the right end.Select the icon.Select "lock screen and password"

3.Select "Manage fingerPrints"

4.Drop the thump that recognise for you and swipe the finger to the sensor it will detect entire your thump it will show you done


Comments

Popular posts from this blog

Local variable for "serviceWorkerVersion" is deprecated in flutter

Problem:  Local variable for "serviceWorkerVersion" is deprecated. Use "{{flutter_service_worker_ version}}" template token instead. See  https://docs.flutter.dev/ platform-integration/web/ initialization  for more details. While try to run my flutter app in chrome it shows the above error. Solution: In script file it shows as like below < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = null ; </ script > Replace with below.It will works fine. < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = "{{flutter_service_worker_ version}}" ; </ script >