我有一个
Android应用程序模块(app)和一个Android库模块(库). app和library都包含这些相同的依赖项:
dependencies { compile 'com.squareup.okhttp:okhttp:2.4.0' compile 'com.squareup.retrofit:retrofit:1.9.0' compile 'io.reactivex:rxjava:1.0.13' compile 'io.reactivex:rxandroid:0.25.0' }
但是,当我尝试将该块添加到项目build.gradle时,它抱怨不知道“编译”DSL.
编辑:我问的是将这个依赖项块放在PROJECT build.gradle中,以避免在每个模块的build.gradle中重复.
解决方法
您可以在库模块中定义共享gradle依赖项,如果app模块将库作为依赖项,则不需要指定所有内容两次.更进一步,您可以创建一个“通用”模块,该模块需要共享的gradle依赖项,并且同时具有app&库模块需要通用模块.