编译兼容性问题外部库

时间:2016-10-01 12:25:40

标签: java android selenium-webdriver compiler-errors compatibility

我试图将Selenium WebDriver用于Android应用程序。 (我使用的是最新的AndroidStudio; v2.2)

我跟着this guide所以在lib我的应用程序中我复制了jar文件(Selenium WebDriver的下载zip文件夹有一个名为“libs”的文件夹,一个名为“client-combined-3.0.0-beta4-的jar” nodeps“和一个DEPENDENCIES和一个LICENSE文件[我刚刚复制了”libs“文件夹中的所有jar和外面的另一个jar])

Here's a screenshot with all the libs.

这是build.gradle( module:app

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.3"
    defaultConfig {
        applicationId "com.example.utente.downall"
        minSdkVersion 14
        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'
        }
    }
    packagingOptions{
        pickFirst("META-INF/LICENSE")
        pickFirst("META-INF/DEPENDENCIES")
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    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'
    testCompile 'junit:junit:4.12'
    compile files('libs/cglib-nodep-3.2.4.jar')
    compile files('libs/client-combined-3.0.0-beta4-nodeps.jar')
    compile files('libs/commons-codec-1.10.jar')
    compile files('libs/commons-exec-1.3.jar')
    compile files('libs/commons-logging-1.2.jar')
    compile files('libs/gson-2.3.1.jar')
    compile files('libs/guava-19.0.jar')
    compile files('libs/hamcrest-core-1.3.jar')
    compile files('libs/hamcrest-library-1.3.jar')
    compile files('libs/httpclient-4.5.2.jar')
    compile files('libs/httpcore-4.4.4.jar')
    compile files('libs/httpmime-4.5.2.jar')
    compile files('libs/jna-4.1.0.jar')
    compile files('libs/jna-platform-4.1.0.jar')
    compile files('libs/junit-4.12.jar')
    compile files('libs/netty-3.5.7.Final.jar')
    compile files('libs/phantomjsdriver-1.3.0.jar')
}

(项目已同步)

执行“run”时出现此错误:

Error:Error converting bytecode to dex:
Cause: Dex cannot parse version 52 byte code.
This is caused by library dependencies that have been compiled using Java 8 or above.
If you are using the 'java' gradle plugin in a library submodule add 
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
to that submodule's build.gradle file.
Error:1 error; aborting
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: Return code 1 for dex process

所以我去了build.gradle( Project:DownAll )并添加了这些目标/源兼容性,所以这就是:

Screnshot

我清理了项目,重新编译了它,重新同步了它,但仍然是同样的错误。 我该怎么办?

如果它可以提供帮助,这是我的环境变量,如果有帮助的话:

JAVA_HOME

C:\ Program Files \ Java \ jdk1.8.0_102

ANDROID_HOME

C:\用户\ Utente \应用程序数据\本地\的Android \ SDK; C:\用户\ Utente \应用程序数据\本地\的Android \ SDK \工具; C:\用户\ Utente \应用程序数据\本地\的Android \ SDK \平台的工具

(隐藏AppData文件夹)

编辑:

UP

1 个答案:

答案 0 :(得分:0)

我刚刚遇到了完全相同的错误,并发现com.google.guava:guava:21.0导致了问题;应用程序在降级到20.0后立即开始工作。

所以,我想你的一些罐子可能不兼容。

逐个尝试降级/删除依赖项。