Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 gradle 构建 aar 文件时,如何将创建的发行版 aar 复制到其他目录?(我不想更改默认输出目录只是为了复制发布文件)
假设您没有使用任何风格,并且您没有更改 AAR 名称,您可以使用类似于以下任务的内容:
task copyAAR(type: Copy) { from('build/outputs/aar') into('/path/to/desired/output/dir') include(project.name + '-release.aar') }
如果您更改了 AAR 名称,请将“project.name”替换为该名称。