Skip to content

dbspoudel/biometric_auth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter biometric_auth

Fingerprint authentication flutter

20190715_204624

Getting Started

Note:- If you are using latest version of local_auth then you have to migrate android x. visit : https://flutter.dev/docs/development/packages-and-plugins/androidx-compatibility

Note: If you are getting this error- [ no fragmentactivity, local auth plugin requires activity to be a FragmentActivity., null ] then follow these steps:-

In MainActivity.java replace existing codes with these codes:

import android.os.Bundle; import io.flutter.app.FlutterActivity; import io.flutter.plugins.GeneratedPluginRegistrant; import io.flutter.app.FlutterFragmentActivity;

public class MainActivity extends FlutterFragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); GeneratedPluginRegistrant.registerWith(this); } }

About

Biometric authentication to login.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 86.1%
  • Objective-C 8.9%
  • Java 5.0%