'this application requires the latest version of arcore but installed

I'm using AR for my app. when I want to use AR I got this message:

this application requires the latest version of arcore but installed

enter image description here

but it installed:

enter image description here

dependencies {
    classpath 'com.android.tools.build:gradle:3.4.1'
    classpath 'com.google.ar.sceneform:plugin:1.10.0'


android {
    compileSdkVersion 30
    buildToolsVersion "30.0.2"
    defaultConfig {
        applicationId "*****"
        minSdkVersion 24
        targetSdkVersion 30
        versionCode 8
        versionName "1.8"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation "com.google.ar.sceneform.ux:sceneform-ux:1.10.0"
    implementation 'com.aurelhubert:ahbottomnavigation:2.3.4'
    implementation 'de.hdodenhof:circleimageview:3.1.0'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'com.squareup.retrofit2:retrofit:2.7.2'
    implementation 'com.squareup.retrofit2:converter-gson:2.7.2'
    implementation("com.squareup.okhttp3:okhttp:4.4.0")
    implementation 'com.github.GrenderG:Toasty:1.4.2'
    implementation 'com.github.smarteist:autoimageslider:1.3.7'
    implementation 'com.github.bumptech.glide:glide:4.11.0'
    implementation 'com.felipecsl.asymmetricgridview:library:2.0.1'
    implementation 'com.github.samanzamani.persiandate:PersianDate:0.8'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
//    implementation 'com.google.ar.sceneform:assets:1.5.1'
    implementation 'com.google.ar.sceneform:assets:1.10.0'
    implementation 'com.github.aliab:Persian-Date-Picker-Dialog:1.5.2'
    implementation 'com.github.chrisbanes:PhotoView:2.3.0'
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.1.0'
    implementation 'com.liulishuo.filedownloader:library:1.7.7'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source