在使用gradle 进行多渠道打包的过程中参考了博文:http://blog.csdn.net/qihigh/article/details/17922345 (在此先感谢一下)
然而在使用的过程中使用gradle assembleRelease -Pmc 并不能得到我想要的所有的包,究其原因是:作者使用了buildType来作为渠道的定义类型,这个不能满足我的需求。而在我的理解,多渠道应当是flavor,因此自己重新写了一下flavor的脚本
def falvors = getMyFlavorsFromFileSystem(); productFlavors{ prod { } dev{ } _4T{} falvors.each{name,config-> "$name"{ sourceSets["$name"].res.srcDirs = [config.rrrr] } } }
这样在在使用assembleRelease -Pmc 时就能够按照预期的打包生成apk了
附上相关的代码:
def getMyFlavorsFromFileSystem(){ flavors = [:] if (project.hasProperty('mc')){ println '------setup flavors ---------------' def path = './build-type/type.txt' def prefix = '_' file(path).eachLine{ line -> println line def f = file("./build-type/$line") if (!f.exists()) { f.mkdir() } def resPath = file("./build-type/$line/res-" + prefix+line) if (!resPath.exists()) { resPath.mkdir() } copyRes(resPath.absolutePath,line) flavors.put(prefix+line,[ rrrr : resPath ]) } } return flavors }
参考文档:
dynamically-generating-product-flavors
时间: 2024-10-07 06:35:11