2015-04-18 75 views
4

我在Android 1.1.0之前使用過Robolectric,但在更新後我無法再使用它了。我谷歌搜索並嘗試了一些解決方案,但都沒有工作。 這裏是我的當前設置:Android studio 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插件並將其刪除並重新安裝再次重新佈置,但沒有運氣。

您的回答,將不勝感激。

回答

6

壞消息:自Android Plugin 1.1.0插件com.github.jcandksolutions.gradle:android-unit-test:2.1.1被取消。另請參閱https://github.com/JCAndKSolutions/android-unit-test#deprecation-notice

好消息:您不需要robolectric的插件。只要刪除apply plugin: 'android-unit-test'和所有應該像以前一樣工作。

下面的示例項目設置https://github.com/nenick/AndroidStudioAndRobolectric

+0

哈哈。你先來這裏的好事。我打算髮帖:) –

+0

@nenick,謝謝,我解決了這個問題。 – sunghun

相關問題