我在 Eclipse 中有一个具有以下项目结构的 android 应用程序: Myapp -src -assets -res -libs -tests --res --src --assests --AndroidManifest.xml(这是用于测试)-AndroidManifest.xml(这是主要)
我能够将项目从 Eclipse 导入和构建到工作室。但是,无法将测试从 eclipse 导入到工作室。我在工作室中使用导入选项并指向具有清单文件的主项目“Myapp”。
我的 build.gradle 看起来像:
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
//instrumentTest.setRoot('src/test')
test {
androidTest.setRoot('test')
}
// 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')
}
任何帮助如何修改 build.gradle 以便我可以在我的工作室中获取测试文件夹并使用 gradle 构建它?