如何在主应用程序类中使用导入的lib类--Android

时间:2018-01-27 00:18:40

标签: android reference barcode-scanner zbar

在我创建的应用程序中,我导入了一个名为 ZBarScanner https://github.com/dm77/ZBarScanner的Lib,我想在主应用程序中单击按钮时调用它但我无法获得对该类的引用如此处所示呼叫Error preview image

我们如何在Android中调用导入的Lib类或我应该怎么做?

EDIT。

  

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.mobiledatabook.com.qrdecoder"
        minSdkVersion 10
        targetSdkVersion 25
        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:25.0.1'
    compile 'com.android.support:design:25.0.1'
    testCompile 'junit:junit:4.12'
}

1 个答案:

答案 0 :(得分:0)

这是一个多项目构建,您应该在 app 文件的build.gradle中添加其他项目的依赖项:

dependencies {
    compile project(':zBarScannerLibrary')
    ...
}

更多信息here