错误:(24,0)在项目':mobile'中找不到带路径':wear'的项目。 Android Studio

时间:2015-04-08 12:15:25

标签: android-studio android-gradle

我在创建项目时在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'
}

2 个答案:

答案 0 :(得分:3)

查看您的settings.gradle,是否包括:wear,
如果您不想要wear的代码,请删除:wear,中的wearApp project(':wear')build.gradle
如果你愿意,那么你必须找到wear的代码,我很害怕。

答案 1 :(得分:0)

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

看起来应该是这样的: 包括':mobile',':glass',':wear'