AndroidStudio 3.0: Error:Unable to resolve dependency for ':app@dev/compileClasspath': Could not resolve project :common
问题 Android Studio 3.0 I have 3 build types: " release " and " dev " project/build.gradle // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } settings.gradle include ':app', ':common' app/build.gradle dependencies {