How to set name of AAR output from Gradle

后端 未结 7 439
一整个雨季
一整个雨季 2021-01-30 10:18

I have a project with several modules in it one of which is a Android Library named (poorly) as sdk. When I build the project it outputs an AAR named sdk.aar<

相关标签:
7条回答
  • 2021-01-30 10:50

    For Android Studio 3 with Gradle 4 and Android Plugin for Gradle 3.0.0 you have to change the answer of qix to the following:

    android {
    ...    
    
        libraryVariants.all { variant ->
            variant.outputs.all { output ->
                if (outputFile != null && outputFileName.endsWith('.aar')) {
                    outputFileName = "${archivesBaseName}-${version}.aar"
                }
            }
        }
    }
    
    0 讨论(0)
  • 2021-01-30 10:53

    For the latest version of Gradle 5+, this is the best answer following @frouo answer:

    defaultConfig {
        ...
        setProperty("archivesBaseName", "${archivesBaseName}-$versionName")
        ...
    }
    

    AAR extension will be added automatically.

    0 讨论(0)
  • 2021-01-30 10:54

    In addition to qix answer here the info that you can add multiple output paths by this method by an regular string as well:

    libraryVariants.all { variant ->
            variant.outputs.each { output ->
                def outputFile = output.outputFile
                if (outputFile != null && outputFile.name.endsWith('.aar')) {
                    def fileName = "${archivesBaseName}-${version}.aar"
                    output.outputFile = new File(outputFile.parent, fileName)
                    output.outputFile = new File("/home/pepperonas/IdeaProjects/Libraries/Base/testapp/libs", fileName)
                }
            }
        }
    

    (Upvotes belong to qix - I just wrote this as an answer because of the readability).

    0 讨论(0)
  • 2021-01-30 10:58

    In my case, ${version} result in "unspecified", finnally I found ${defaultConfig.versionName} works.

    android {
        ...
        libraryVariants.all { variant ->
            variant.outputs.all {
                outputFileName = "${variant.name}-${defaultConfig.versionName}.aar"
            }
        }
    }
    
    0 讨论(0)
  • 2021-01-30 11:02

    As mentioned in comments below and another answer, the original answer here doesn't work with Gradle 3+. Per the docs, something like the following should work:

    Using the Variant API to manipulate variant outputs is broken with the new plugin. It still works for simple tasks, such as changing the APK name during build time, as shown below:

    // If you use each() to iterate through the variant objects,
    // you need to start using all(). That's because each() iterates
    // through only the objects that already exist during configuration time—
    // but those object don't exist at configuration time with the new model.
    // However, all() adapts to the new model by picking up object as they are
    // added during execution.
    android.applicationVariants.all { variant ->
        variant.outputs.all {
            outputFileName = "${variant.name}-${variant.versionName}.apk"
        }
    }
    

    OLD ANSWER:

    I am unable to get archivesBaseName & version to work for me w/ Android Studio 0.8.13 / Gradle 2.1. While I can set archivesBaseName and version in my defaultConfig, it doesn't seem to affect the output name. In the end, adding the following libraryVariants block to my android {} scope finally worked for me:

    libraryVariants.all { variant ->
        variant.outputs.each { output ->
            def outputFile = output.outputFile
            if (outputFile != null && outputFile.name.endsWith('.aar')) {
                def fileName = "${archivesBaseName}-${version}.aar"
                output.outputFile = new File(outputFile.parent, fileName)
            }
        }
    }
    
    0 讨论(0)
  • 2021-01-30 11:07

    with the build-plugin 1.5.0 it is now possible to use archivesBaseName in the defaultConfig

    0 讨论(0)
提交回复
热议问题