基于(主)项目模块风格的Gradle子项目外部库依赖项

时间:2016-03-22 14:06:11

标签: android gradle

我有两个模块 app 和 我使用的两个外部maven库。

外部库有细微的差别,并根据构建风格和maven分类器一起选择。

(子项目/模块)和(主模块)都根据风味使用相同的外部库。

  

我的问题是我无法控制/选择子项目库   编译。

模块应用

apply plugin: 'android-sdk-manager'
apply plugin: 'com.android.application'

android {
productFlavors {
fOne {}
fTwo {}
}
}

dependencies {   
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.android.support:gridlayout-v7:22.2.1'
    compile 'com.android.support:support-annotations:22.2.1'

// selecting the library based on the flavour
fOneCompile(group: 'com.xyz', name: 'SDK', version: '1.0', ext: 'aar')
fTwoCompile(group: 'com.xyz', name: 'SDK', version: '1.0', classifier: 'qa', ext: 'aar')

 //<< the library also needs the com.xyz.SDK
 fOneCompile project(path: ':library', configuration: "fOneCompile") 
 fTwoCompile project(path: ':library', configuration: "fTwoCompile")


}

模块库:

apply plugin: 'com.android.library'
android {
....
}

repositories{    
  jcenter()
  flatDir{
      dirs 'libs'
   }
}

configurations {
    fOne
    fTwo 
}

dependencies {
    ??? what goes here, flavours are not available ??? 
    //the library also needs the com.xyz.SDK
    fOneCompile(group: 'com.xyz', name: 'SDK', version: '1.0', ext: 'aar')
    fTwoCompile(group: 'com.xyz', name: 'SDK', version: '1.0', classifier: 'qa', ext: 'aar')
}

模块无法编译,因为它找不到SDK和我 需要根据正在编译的风味加入一个。

2 个答案:

答案 0 :(得分:0)

解决方案非常简单,因为存在重复的依赖关系 主项目选择适当的依赖关系可以使用“提供” 语句在解析依赖关系时的子模块中。

在这种情况下,可以替换依赖项中的“compile”语句 模块库(子模块)中带有“提供”的部分:

模块库:

mobmuplatandroidwear

答案 1 :(得分:0)

使用此配置:

defaultConfig {
       publishNonDefault true
}

configurations {
    fOneDebugCompile
    fOneReleaseCompile
    fTwoDebugCompile
    fTwoReleaseCompile
}