Android Studio自从更新3.0,gradle更新3.1.3之后,build.gradle文件中outputfile就不可用了,会报错,既Cannot set the value of read-only property 'outputFile' for object of type com.android.build.gradle.internal.api.LibraryVariantOutputImpl.
创新互联建站是一家集网站建设,新田企业网站建设,新田品牌网站建设,网站定制,新田网站建设报价,网络营销,网络优化,新田网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。
所以如果要打包aar,使用自定义路径和文件名称,需要使用新的方法。
如果使用:
apply plugin: 'com.android.library'
就是打包aar。
以下是具体的代码,可以直接使用。直接放在build.gradle文件最外面即可使用
android.libraryVariants.all { variant ->
variant.outputs.all {
// 自定义输出路径
// variant.getPackageApplication().outputDirectory = new File("C:\\1")
// 自定义文件名{示例:AppName-Flavor-debug-v1.0.0_201807301409}
outputFileName = "test.aar"
}
}
//挂接自定义task到构建过程中
this.project.afterEvaluate { project ->
// 获得build task
def buildTask = project.tasks.getByName('build')
if (buildTask == null) {
throw GradleException('the build task is not found')
}
buildTask.doLast {
copyTask.execute()
}
}
//自定义copyApk task
task copyTask {
doLast {
def fileName = "test.aar"
// 拷贝文件的始发地
function(){ //交易品种 http://www.fx61.com/faq/muniu/447.html
def sourceFile = "/build/outputs/aar/" + fileName
// 指定文件拷贝的目的地
def destationFile = new File("C:\\1 ")
try {
// 判断文件夹是否存在
if (!destationFile.exists()) {
destationFile.mkdir()
}
//拷贝
copy {
from sourceFile
into destationFile
rename {
fileName
}
}
} catch (Exception e) {
e.printStackTrace()
}
}
}
上面build之后就在c:\1目录下面去查找对应的aar即可
当然如果使用
apply plugin: 'com.android.application'
就更简单了,直接在最外围放以下代码即可
android.applicationVariants.all { variant ->
variant.outputs.all {
// 自定义输出路径
variant.getPackageApplication().outputDirectory = new File("C:\\1")
// 自定义文件名{示例:AppName-Flavor-debug-v1.0.0_201807301409}
outputFileName = "test.aar"
}
}