简体   繁体   中英

Error:(2, 0) Plugin with id 'android-test' not found

I am trying to implement Android-DirectoryChooser in my app, but I am new to Android Studio and I have come to a problem that I am not sure how to resolve.

I have created a new folder inside my project called "libraries" and I have copied this library project inside this folder. I then added a dependency like this:

compile project('libraries:android-directorychooser')

I then synced gradle and I have gotten the following error:

Error:(2, 0) Plugin with id 'android-test' not found.

This is probably the problematic line in the project library build.gradle file:

apply plugin: 'android-test'

I've searched for a plugin named "android-test" but I've only found a library and it seems to be deprecated. How can I solve this?

Know you for what this plugin is necessary? When not remove it and your robolectric dependencies.

Plugin comes from https://github.com/robolectric/gradle-android-test-plugin

Robolectric is for unit tests, when you like to use it.(which I would recommend) then just add something like that

buildscript {
repositories {
    mavenCentral()
}

dependencies {
    classpath 'com.android.tools.build:gradle:0.10.+'
    classpath 'org.robolectric.gradle:gradle-android-test-plugin:0.10.+'
}
}

to your lib module build.gradle file and the plugin should be found

Android-test is no longer a separate plugin. The standard 'android' plugin now includes testing features. See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Testing for more information.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM