zxing条形码未使用导入声明

zxing barcode unused import statement

我有一个带有 zxing 条码的项目,更改后 build.grade 像这样

    dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'

    //add zxing dependency
    implementation 'com.journeyapps:zxing-android-embedded:3.0.2@aar'
    implementation 'com.google.zxing:core:3.3.0'

    //add google API
    implementation 'com.google.android.gms:play-services:12.0.1'
    implementation 'com.android.support:multidex:1.0.3'
    }

的消息错误
import com.google.zxing.integration.android.IntentIntegrator;
import com.google.zxing.integration.android.IntentResult;

错误说 "unused import statement"

因为我的 IntentIntegrator activity 错误,它说 无法解析符号 ,我使用 Android Studio 3.1.2。

我试图清理和重建,但结果是一样的。因此,几天后,我再次尝试导出 Apk,并在我的真实设备上进行测试,当在设备上运行时,我不知道它是否工作,我很惊讶结果运行良好。我不知道为什么....因为 Android Studio 发现许多错误和警告。但是在运行时,它运行良好。