无法 运行 android 模块

Unable to run android module

我和我的朋友正在做一个 android 项目。他决定在项目中包含一个模块,完成后,他将其推送到我们新分支下的 github 帐户。

当我 git 拉出分支时,我不能 运行 模块,而他可以 运行 在他的计算机上。模块 不会 像其他模块一样显得更暗和更粗。这是屏幕截图。模块名称是 army

这是模块的 build.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
compileSdkVersion 21
buildToolsVersion '21.1.2'

defaultConfig {
    applicationId "xyz.abc"
    minSdkVersion 15
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"

    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }

    debug {
        debuggable true
    }
}
packagingOptions {
    exclude 'META-INF/DEPENDENCIES'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/NOTICE'
}
}

我需要更改什么才能运行 模块?

尝试在 settings.gradle 文件中添加模块。

例如:

包括“:app”、“:army”