Android Studio 1.1.0无法设置Robolectric。

4

我之前在 Android 1.1.0 版本之前使用过 Robolectric,但是在我更新版本后就不能再使用了。我搜索了一些解决方案,但是都没有起作用。

以下是我的当前设置:

project.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.1.0'
        classpath 'com.github.jcandksolutions.gradle:android-unit-test:2.1.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

app.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "my_package_name"
        minSdkVersion 9
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

apply plugin: 'android-unit-test'

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile 'com.android.support:recyclerview-v7:21.0.3'
    testCompile 'org.easytesting:fest:1.0.16'
    testCompile 'junit:junit:4.10'
    testCompile 'org.robolectric:robolectric:2.4'
    testCompile 'com.squareup:fest-android:1.0.8'
}

当我尝试构建该项目时,会出现以下错误:

Error:(22) A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'android-unit-test']
   > No such property: bootClasspath for class: com.android.build.gradle.AppPlugin

当然,我已经安装了android-unit-test插件,然后卸载并重新安装它,但依然没有运气。
感谢您的回答。
1个回答

6

哈哈,你来得真快。我本来要发这个的 :) - Jared Burrows
@nenick,谢谢,我已经解决了这个问题。 - sunghun

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接