在我创建的应用程序中,我导入了一个名为 ZBarScanner https://github.com/dm77/ZBarScanner的Lib,我想在主应用程序中单击按钮时调用它但我无法获得对该类的引用如此处所示呼叫
我们如何在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'
}
答案 0 :(得分:0)
这是一个多项目构建,您应该在 app 文件的build.gradle中添加其他项目的依赖项:
dependencies {
compile project(':zBarScannerLibrary')
...
}
更多信息here。