Когда я пытаюсь реализовать свой модуль приложения в модуле с именем ProjectPodoSample (который состоит только из недавно созданного пустого действия), я получаю следующие ошибки:
Unable to resolve dependency for ':projectpodosample@debug/compileClasspath': Could not resolve project :app.
Unable to resolve dependency for ':projectpodosample@debugAndroidTest/compileClasspath': Could not resolve project :app.
Unable to resolve dependency for ':projectpodosample@debugUnitTest/compileClasspath': Could not resolve project :app.
Unable to resolve dependency for ':projectpodosample@release/compileClasspath': Could not resolve project :app.
Unable to resolve dependency for ':projectpodosample@releaseUnitTest/compileClasspath': Could not resolve project :app.
Я попытался удалить модуль и воссоздать его. Я пытался очистить свой проект и восстановить его. Я попытался обновить версию Gradle в settings.gradle. Я пытался снять флажок «Автономная работа». Ничего не получалось. Вот мои два файла gradle.build.
gradle.build в модуле приложения:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.visionnaires.projectpodo"
minSdkVersion 23
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
gradle.build в модуле projectpodosample:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.visionnaires.projectpodosample"
minSdkVersion 23
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':app')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
Я использую 64-разрядную версию Android Studio 3.1.2.