Error:(24, 0) Project with path ':wear' could not be found in project ':mobile'. Android Studio

Error:(24, 0) Project with path ':wear' could not be found in project ':mobile'. Android Studio

我在 Android Studio 创建项目时遇到以下错误...

Error:(24, 0) Project with path ':wear' could not be found in project ':mobile'.

这是我的build.gradle文件代码,我想解决这个问题。任何帮助表示赞赏...

apply plugin: 'com.android.application'

 android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "com.user.usereventdemo"
    minSdkVersion 16
    targetSdkVersion 21
    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')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:6.5.87'
}

看看你的settings.gradle,包括:wear,吗?
如果您不想要 wear 的代码,请删除 build.gradle 中的 :wear,wearApp project(':wear')
如果你想要,恐怕你得找到wear的代码。

在 Android Studio 的 Gradle Scripts 文件夹下,找到 "settings.gradle"。 打开它并在 include 语句的末尾添加“:wear”。

它应该看起来像这样: 包括“:mobile”、“:glass”、“:wear”