添加了兩個自定義zxing和zbar庫,用于通過File>New>Jar.file添加它們,然后在項目結(jié)構(gòu)中也添加了它們,并在所有已經(jīng)打開的問題中使用了編譯,但在Android Studio中,它不再是實現(xiàn)和api如何正確添加它們?build.gradle (app)apply plugin: 'com.android.application'check.dependsOn 'assembleDebugAndroidTest'android {compileSdkVersion 28flavorDimensions "minSdkVersion"defaultConfig { minSdkVersion 16 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'}buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' }}compileOptions { sourceCompatibility 1.8 targetCompatibility 1.8}}configurations.all {resolutionStrategy.force 'com.android.support:support-annotations:28.0.0'}dependencies {implementation 'com.android.support:multidex:1.0.3'implementation 'com.android.support.constraint:constraint-layout:1.1.3'//noinspection GradleCompatibleimplementation 'com.android.support:appcompat-v7:28.0.0'implementation 'com.android.support:support-v4:28.0.0'implementation 'com.android.support:animated-vector-drawable:28.0.0'implementation 'com.android.support:cardview-v7:28.0.0'implementation 'com.android.support:design:28.0.0'// Firebase Authenticationimplementation 'com.google.firebase:firebase-core:16.0.7'implementation 'com.google.firebase:firebase-auth:16.2.0'implementation 'com.google.android.gms:play-services-maps:16.1.0'implementation 'com.google.firebase:firebase-database:16.0.1'androidTestImplementation 'com.android.support.test.espresso:espresso- core:3.0.2'androidTestImplementation 'com.android.support.test:rules:1.0.2'androidTestImplementation 'com.android.support.test:runner:1.0.2'implementation project(':zbar')implementation project(':zxing_core')}apply plugin: 'com.google.gms.google-services'
1 回答

繁星coding
TA貢獻1797條經(jīng)驗 獲得超4個贊
我建議從這里使用依賴項 https://mvnrepository.com/artifact/com.google.zxing 但是在你的情況下(只要你添加jar),你可以通過build.gradle(庫被它們放入的任何文件夾替換)插入它們。implementation fileTree(include: ['*.jar'], dir: 'libs')
添加回答
舉報
0/150
提交
取消