我遇到了一个gradle构建问题,我在核心模块的布局文件中找到了一堆@string引用的错误“找不到匹配给出名称的资源...”来自其他模块中的XML文件。
这是我的基本布局结构(这是一个旧的Eclipse项目,我试图在Android Studio中转换为gradle)。
主项目文件夹
-Google-播放services_lib
-MainModule(这是引用其他模块的主要模块)
-LibraryModule
-ZXing
我的build.gradle目前在主项目级别没有任何内容,我的主要设置.gradle只包含以下项目:
include ':LibraryModule'
include ':google-play-services_lib'
include ':MainModule'
include ':ZXing'
这是我的主模块的build.gradle,应该在打开应用程序时运行。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':LibraryModule')
compile project(':ZXing')
compile project(':google-play-services_lib')
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
我收到的所有“No resource found ...”消息都在MainModule中,而它们引用的字符串在LibraryModule中。关于这个构建中可能出现什么问题的任何想法在这里?
编辑:根据请求添加我的LibraryModule gradle.build文件。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':ZXing')
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
答案 0 :(得分:1)
你的LibraryModule应该使用android-library gradle插件。您无法在两个应用程序模块之间共享资源。
模块是一个 您可以构建,测试或调试的应用程序组件 独立。模块包含您的源代码和资源 应用程序。 Android Studio / Gradle项目包含三种模块:
- Java库模块包含可重用的代码。构建系统生成 Java库模块的JAR包。
- Android库模块 包含可重复使用的特定于Android的代码和资源。构建系统 为库模块生成AAR(Android ARchive)包。
- Android应用程序模块包含应用程序代码,可能依赖于 库模块,尽管许多Android应用程序只包含一个 应用模块。构建系统为其生成APK包 应用模块。
http://developer.android.com/sdk/installing/studio-build.html#projectModules
应该对这个问题有所了解