【问题标题】:How to add latest dependency ZXing android embedded (2017)如何添加最新的依赖 ZXing android Embedded (2017)
【发布时间】:2017-06-24 20:45:44
【问题描述】:

我在 Android Studio 中开始了一个新项目,我想导入 zxing-android-embedded 以允许我在我的应用程序中创建一个简单的条形码扫描仪。

这里是 build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.example.android.barcodescanner"
        minSdkVersion 19
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile 'com.google.zxing:core:3.2.1'
    compile 'com.journeyapps:zxing-android-embedded:3.2.0'
}

显示错误

Error:(29, 13) Failed to resolve: com.google.zxing:core:3.2.1
<a href="disable.gradle.offline.mode">Disable offline mode and sync project</a><br><a href="openFile:C:/Users/user/Desktop/AndroidStudioProjects/AndroidStudioProjects/BarCodeScanner/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

Error:(30, 13) Failed to resolve: com.journeyapps:zxing-android-embedded:3.2.0
<a href="disable.gradle.offline.mode">Disable offline mode and sync project</a><br><a href="openFile:C:/Users/user/Desktop/AndroidStudioProjects/AndroidStudioProjects/BarCodeScanner/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

好吧,我搜索了 Stack Overflow,但找不到最新的 Dependency ZXing android Embedded。

【问题讨论】:

    标签: java android dependencies zxing


    【解决方案1】:

    试试这个:

    dependencies {
        compile 'com.journeyapps:zxing-android-embedded:3.5.0'
        compile 'com.android.support:appcompat-v7:23.1.0'   
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-05-21
      • 1970-01-01
      • 2020-10-29
      • 2016-10-06
      • 2018-05-27
      • 2015-03-13
      相关资源
      最近更新 更多