1

我已将 Android Gradle 插件升级到 3.0。我的项目中有多个模块。所以对于模块中不同的 buildTypes(比如release),我也在releaseImplementation project(':otherModule')主 App 模块 gradle 中添加了。在主 App 模块中的某些布局 xml 文件中,当我尝试获取一些资源(存在于 中otherModule时,出现以下错误。

AAPT:未找到与给定名称匹配的资源(在“文本”处,值为“@string/some_string”)。

我的项目结构看起来像

.
├── app-module
│   |__ build.gradle
│   |__ src
│       |__ main
│            |__ res
├── othermodule
│   |__ src
│   |    |__ main
│   |         |__ res
│   |__ build.gradle
|
|__ build.gradle (root)
|__ settings.gradle
4

0 回答 0