epicshaggy / capacitor-native-biometric

184 stars 95 forks source link

Missing import on Android "cannot find symbol". #98

Closed jackblordbest closed 1 year ago

jackblordbest commented 1 year ago

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.