Home > front end >  I get the error class referenced in the layout file ... was not found in the project or the librarie
I get the error class referenced in the layout file ... was not found in the project or the librarie

Time:04-20

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')

Here are the codes in the build gradle. The implementation('com.kevalpatel2106:ruler-picker:1.1') library at the bottom is the library I'm trying to use and getting the error.

enter image description here

Here's a simple stack of code that I'm trying to use the library for as well.

Error; Class referenced in the layout file, com.kevalpatel2106.rulerpicker.RulerValuePicker, was not found in the project or the libraries

and;

Cannot resolve class com.kevalpatel2106.rulerpicker.RulerValuePicker

CodePudding user response:

Follow the steps-

  1. Download .aar file from enter image description here if its not work confirm with me, I will try to help with same.

  • Related