无法解析 setInvalidatedByBiometricEnrollment
cannot resolve setInvalidatedByBiometricEnrollment
我正在创建一个应用程序,可以使用 FingerprintManager
在具有指纹传感器的设备上使用指纹身份验证。我正在关注 google API 可用指南 here:
build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.goyal.fingerprinttest"
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
compile "com.android.support:support-v4:24.1.1"
compile "com.android.support:support-v13:24.1.1"
compile "com.android.support:cardview-v7:24.1.1"
compile "com.android.support:appcompat-v7:24.1.1"
}
我自己找的
实际上 setInvalidatedByBiometricEnrollment 仅在 API 级别 +24 可见。
只需要将compileSdkVersion设置为24
我正在创建一个应用程序,可以使用 FingerprintManager
在具有指纹传感器的设备上使用指纹身份验证。我正在关注 google API 可用指南 here:
build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.goyal.fingerprinttest"
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
compile "com.android.support:support-v4:24.1.1"
compile "com.android.support:support-v13:24.1.1"
compile "com.android.support:cardview-v7:24.1.1"
compile "com.android.support:appcompat-v7:24.1.1"
}
我自己找的
实际上 setInvalidatedByBiometricEnrollment 仅在 API 级别 +24 可见。
只需要将compileSdkVersion设置为24