Android Studio Gradle 1.1和Roboeletric

时间:2015-03-30 00:01:21

标签: android testing android-studio gradle

我很难用Gradle 1.1与Roboeletric合作制作AS。我已经阅读了一些教程,尝试了一些但没有看到工作的东西。

这是我的Project build.gradle文件:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.1.0'
        classpath 'org.robolectric:robolectric-gradle-plugin:1.0.1'

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

allprojects {
    repositories {
        jcenter()
    }
}

robo eletric得到了下载,所有这些都是我的模块build.gradle:

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "br.com.boozeprice"
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

apply plugin: 'org.robolectric'

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'com.android.support:support-v4:21.0.3'

    compile project(':androidcore')
    compile project(':persistencecore')

    testCompile 'junit:junit:4.12'
    testCompile 'org.robolectric:robolectric:2.4'
}

gradle编译,除了它之外,我没有项目中的库,我无法导入roboeletric类,也不能导入注释。

我错过了什么吗?

提前谢谢。

1 个答案:

答案 0 :(得分:0)

我所做的工作是改变gradle文件中的这一行:

testCompile 'junit:junit:4.12'
testCompile 'org.robolectric:robolectric:2.4'

对此:

androidTestCompile 'junit:junit:4.12'
androidTestCompile 'org.robolectric:robolectric:2.4

现在就像一个魅力