Skip to content

Instantly share code, notes, and snippets.

@LucioMSP
Last active November 8, 2019 19:08
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 LucioMSP/55921e6ca652e79ee501f83b0707e79e to your computer and use it in GitHub Desktop.
Save LucioMSP/55921e6ca652e79ee501f83b0707e79e to your computer and use it in GitHub Desktop.
Ejemplo de cómo implementar la autenticación biométrica en aplicaciones Xamarin.Forms
<?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.ss.mx.fingerprintpcl">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
<application android:label="FingerPrintPCL.Android"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES" />
<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