找不到 android.security.identity.IdentityCredential 的 class 文件

class file for android.security.identity.IdentityCredential not found

作为我应用中身份验证的一部分,我正在尝试实施生物特征身份验证。

我根据文档进行了所需的代码更改。

在构建我的应用程序时,我遇到了以下构建错误。

class file for android.security.identity.IdentityCredential not found

请在下面找到 build.gradle 文件。

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.vj.togetheron"
        minSdkVersion 23
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {


    //implementation "androidx.security:security-crypto:1.0.0-rc03"

    // For Identity Credential APIs
    //implementation "androidx.security:security-identity-credential:1.0.0-alpha01"
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    //noinspection GradleCompatible
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'com.google.android.material:material:1.2.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    implementation 'androidx.biometric:biometric:1.1.0-beta01'
    implementation 'androidx.legacy:legacy-support-core-utils:1.0.0'
    //implementation "androidx.security:security-identity-credential:1.0.0-alpha01"
    //implementation 'androidx.security:security-crypto:1.1.0-alpha02'
    testImplementation 'junit:junit:4.13.1'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}

谁能告诉我这里缺少什么?

android.security.identity.IdentityCredential 仅从 API 30 级开始可用。

我已经能够通过在 build.gradle 中为我的主项目 和所有从源代码编译的库 设置 compileSdkVersion 30 来解决这个错误。

出于某种未知原因,当我为主项目设置“compileSdkVersion 30”但一个库的build.gradle中仍然包含“compileSdkVersion 29”时,android-29 sdk 路径用于编译主要项目。 :(