Я работаю с Android Studio и в своих зависимостях для своего приложения пытаюсь добавить зависимость testCompile, как указано здесь: http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html Когда я синхронизирую свой файл, я получить сообщение об ошибке: Я не понимаю, что происходит, мой файл сборки Gradle в моей корневой папке установлен на classpath 'com.android.tools.build:gradle:0.12.+'
и это самая последняя версия, Почему он не распознает testCompile? Я не хочу развертывать тестовые зависимости на производстве... Любая помощь будет оценена.
РЕДАКТИРОВАТЬ: Вот файл сборки проекта
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
и вот файл сборки src:
apply plugin: 'com.android.application'
android {
compileSdkVersion 17
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.example.edu.myApp"
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug{
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('libs/scribe-1.3.5.jar')
compile files('libs/json_simple-1.1.jar')
compile 'com.google.android.gms:play-services:5.0.77'
// Can't be higher than 19 if we want to support smaller android versions
compile 'com.android.support:appcompat-v7:19.+'
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v4:19.+'
// This Mockito includes all dependancies (great for us)
testCompile "org.mockito:mockito-core:1.9.+"
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.objenesis:objenesis:1.2'
}