我有一个带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;
错误表示“未使用的导入语句”
由于我的IntentIntegrator活动错误,它说无法解析符号,我使用的是Android Studio 3.1.2。
答案 0 :(得分:0)
我试图清理和重建,但结果是一样的。因此,经过几天我再次尝试导出Apk,并在我的真实设备上进行测试时,我在设备上运行时不会工作,我很惊讶结果运行良好。我不是没有原因......因为Android Studio发现了许多错误和警告。但是当它运行时,它运作良好。