Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error: package android.view does not exist

I am getting this error in view bindings file generated by Android studio. I have added

buildFeatures {
        viewBinding true
    }

to the app build.gradle file.

like image 305
saurabh vaish Avatar asked Jun 10 '26 21:06

saurabh vaish


1 Answers

In your build.gradle(:app) file,

compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

Try changing the java version. I got the same error when using VERSION_11 but the VERSION_1_8 fixed the issue.

like image 170
Akash Srivastava Avatar answered Jun 12 '26 10:06

Akash Srivastava