epicshaggy / capacitor-native-biometric

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing import on Android "cannot find symbol".

jackblordbest opened this issue · comments

Hello

Fail:
node_modules\capacitor-native-biometric\android\src\main\java\com\epicshaggy\biometric\NativeBiometric.java:287: error: cannot find symbol @SuppressLint("NewAPI") // API level is already checked ^ symbol: class SuppressLint location: class NativeBiometric Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. 1 error

You have to add the import in "NativeBiometric.java": import android.annotation.SuppressLint;.

Thanks for the maintenance.