我的朋友和我正在研究一个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'
}
}
我需要更改哪些内容才能运行该模块?
答案 0 :(得分:2)
尝试在 settings.gradle 文件中添加模块。
例如:
包括':app',':army'