User-agent: Mediapartners-Google Disallow: User-agent: * Disallow: /search Allow: / Sitemap: http://nano7mobile.blogspot.com/sitemap.xml Nano Mobile: naming
Affichage des articles dont le libellé est naming. Afficher tous les articles
Affichage des articles dont le libellé est naming. Afficher tous les articles

Build Variants / APK naming topic






So I can't seem to find an answer to get this to work the way i want, hoping someone here may know...

I have my gradle setup with different build variants and it works fine to switch between them or generate signed apk for the chosen variant. However what I'm looking to do (ideally in 1 click) is generate each variant's apk and name it accordingly with the version number and variant name.

Any ideas?

I've tried the following snippet

Code:


android {
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            def outputFile = output.outputFile
            if (outputFile != null && outputFile.name.endsWith('.apk')) {
                def fileName = outputFile.name.replace('.apk', "-${versionName}.apk")
                output.outputFile = new File(outputFile.parent, fileName)
            }
        }
    }
}


but no joke, if i went to modify it..it froze android studio. thanks!