16 lines
298 B
Swift
16 lines
298 B
Swift
![]() |
//
|
||
|
// BiometricTest.swift
|
||
|
// Friendvatars
|
||
|
//
|
||
|
// Created by Dawid Kubicki on 19/11/2018.
|
||
|
// Copyright © 2018 Razeware. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import LocalAuthentication
|
||
|
|
||
|
var biometricType: LABiometryType {
|
||
|
let authContext = LAContext()
|
||
|
return authContext.biometryType
|
||
|
}
|