无法解析方法:CameraSource.Builder.setAutoFocusEnabled

时间:2016-11-23 04:25:06

标签: android android-camera android-vision

我使用Vision API扫描条形码。它几乎已经完成,除了自动对焦。我按照此链接中的指南:https://developers.google.com/android/reference/com/google/android/gms/vision/CameraSource.Builder,使用 setAutoFocusEnabled 方法并获得错误:“无法解析方法'setAutoFocusEnabled(boolean)'”

我的Android工作室版本:2.1.1

JRE:1.8.0

文件build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "***"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:support-v4:23.4.0'
    compile 'com.google.android.gms:play-services:7.8+'
}

1 个答案:

答案 0 :(得分:2)

您正在阅读比您正在使用的库更新的文档。

如果您想要更新的功能,请升级。

替换com.google.android.gms:play-services:7.8+

使用com.google.android.gms:play-services-vision:10.0.0或其他一些版本,而不是7.8

selective compilation。它会使您的应用更小,并且构建更快。