我收到错误 class referenced in the layout file ... was not found in the project or the libraries

I get the error class referenced in the layout file ... was not found in the project or the libraries

plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'kotlin-android-extensions'
}

android {
    compileSdk 32

defaultConfig {
    applicationId "com.example.myapplication"
    minSdk 23
    targetSdk 32
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
    jvmTarget = '1.8'
    }
}

dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

implementation('com.kevalpatel2106:ruler-picker:1.1')

以下是构建中的代码 gradle。底部的 implementation('com.kevalpatel2106:ruler-picker:1.1') 库是我尝试使用并出现错误的库。

这是我也尝试使用该库的简单代码堆栈。

错误; 在布局文件 com.kevalpatel2106.rulerpicker.RulerValuePicker 中引用的 Class 在项目或库中找不到

和;

无法解析 class com.kevalpatel2106.rulerpicker.RulerValuePicker

按照步骤-

  1. Link
  2. 下载 .aar 文件
  3. 在应用程序的 app/libs 文件夹中添加该 .aar 文件。
  4. 在 build.gradle 文件中添加这一行 implementation files('libs/ruler-picker-1.1.aar')
  5. 无需使用您当前的代码更改 XML 文件。

查找附件截图供您参考- 如果它不起作用,请与我确认,我会尽力提供帮助。