Ошибка Gradle: конфигурация объявляет зависимость, которая не объявлена
Я делаю свое первое приложение для Android, но я не могу заставить Android Studio работать. Сначала я получил ошибку
"Project with path ':wear' could not be found in project ':mobile'.
Это было решено путем добавления "include ':wear"
в settings.gradle
,
Но тогда возникает новая ошибка:
"Error:Module version Test2:mobile:unspecified, configuration 'wearApp' declares a dependency on configuration 'default' which is not declared in the module descriptor for Test2:wear:unspecified" .
Что мне нужно сделать, чтобы устранить эту ошибку?
На всякий случай, если это необходимо: вот build.gradle
:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.verbraeken.joost.test2"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
wearApp project(':wear')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:design:23.1.1'
}
settings.gradle:
include ':mobile'
include ':wear'
5 ответов
В Android Studio 3.0 документация для перехода на новый плагин гласит:
dependencies {
// This is the old method and no longer works for local
// library modules:
// debugCompile project(path: ':foo', configuration: 'debug')
// releaseCompile project(path: ':foo', configuration: 'release')
// Instead, simply use the following to take advantage of
// variant-aware dependency resolution. You can learn more about
// the 'implementation' configuration in the section about
// new dependency configurations.
implementation project(':foo')
// You can, however, keep using variant-specific configurations when
// targeting external dependencies. The following line adds 'app-magic'
// as a dependency to only the 'debug' version of your module.
debugImplementation 'com.example.android:app-magic:12.3'
}
Так что измени это
debugCompile project(path: ':foo', configuration: 'debug')
releaseCompile project(path: ':foo', configuration: 'release')
к этому
implementation project(':foo')
Ошибка: версия модуля Test2:mobile: не указано, конфигурация 'wearApp' объявляет зависимость от конфигурации 'default'
Это означает, что модуль (wearApp в вашем случае) не имеет build.gradle
файл или правильная конфигурация внутри build.gradle
файл.
Поскольку вы определяете модуль в settings.gradle
Вы должны предоставить build.gradle
для каждого модуля.
В твоем случае:
root
|-- mobile
|----build.gradle
|-- wear
|----build.gradle
|--build.gradle
|--settings.gradle
Если вы не используете Android Studio 3.0, это сработало для меня в вашей библиотеке build.gradle:
publishNonDefault true
как это
android {
compileSdkVersion maxApiLevel.toInteger()
buildToolsVersion androidBuildToolsVersion
publishNonDefault true
[...]
}
И в ваш включают build.gradle:
dependencies {
debugCompile project(path: ':foo', configuration: 'debug')
releaseCompile project(path: ':foo', configuration: 'release')
}
Хитрость заключается в следующем:
dependencies {
// If the main app and wearable modules have the same flavors,
// the following configuration uses automatic dependency matching.
wearApp project(':wearable')
}
Вы не установили версию или тип сборки сейчас, Gradle 3.0 и выше ищет каждый вариант и тип сборки. Дополнительная информация: https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration
Я использую ionic cordova для сборки моего приложения, в моем случае файл build.grade обновлялся каждый раз, мне нужно изменить файл "app_path>node_modules\cordova-android\bin\templates\cordova\lib\builders\GradleBuilder. JS "от:
console.log('Subproject Path: ' + p);
var libName=p.replace(/[/\\]/g, ':').replace(name+'-','');
depsList += ' debugCompile(project(path: "' + libName + '", configuration: "debug"))';
insertExclude(p);
depsList += ' releaseCompile(project(path: "' + libName + '", configuration: "release"))';
insertExclude(p);
чтобы:
console.log('Subproject Path: ' + p);
var libName=p.replace(/[/\\]/g, ':').replace(name+'-','');
depsList += ' compile project(\'' + libName + '\')';
insertExclude(p);
Работает для меня