Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created April 20, 2019 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/9bb87179d6644e149f4d0dfcfb951b38 to your computer and use it in GitHub Desktop.
Save juucustodio/9bb87179d6644e149f4d0dfcfb951b38 to your computer and use it in GitHub Desktop.
Example of how to implement Biometric Authentication in Xamarin.Forms applications - http://julianocustodio.com/autenticacao-biometrica
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.julianocustodio.biometricdemo">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" />
<application android:label="BiometricDemo.Android"></application>
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment