Android Gradle 3.0.0-alpha2插件,无法设置只读属性'outputFile'的值


86

我正在使用此代码

applicationVariants.all { variant -> 
    variant.outputs.each { output ->
        def SEP = "_"
        def flavor = variant.productFlavors[0].name
        def buildType = 
        variant.variantData.variantConfiguration.buildType.name
        def version = variant.versionName
        def date = new Date()
        def formattedDate = date.format('ddMMyy_HHmm')
        def newApkName = PROJECT_NAME + SEP + flavor + SEP + buildType + SEP + version + SEP + formattedDate + ".apk"
        def file = new File(newApkName)
        output.outputFile = file
    }
}


更改新的apk时更改apk文件的名称,但是由于我使用的是Android Studio 3.0 Canary 2,因此会出现此错误:
无法设置只读属性'outputFile'的值。


1
这是坏消息,developer.android.com / studio / preview / features /…解释,显然计划使用新的api来解决此问题。滚动到该链接页面的底部。
赫克托

Answers:


207

正如Android插件3.0迁移指南所建议的:

  • 使用all()代替each()
  • 如果仅更改文件名,请使用outputFileName代替output.outputFile(这是您的情况)

指南中的示例:

// 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"
    }
}

1
我需要更改输出文件路径,而不仅仅是名称。
Amrut Bidri '17

@AmrutBidri,我认为最好提出一个新问题(如果尚未在SO的某处得到回答)。该问题仅用于更改文件名。
帕维尔Nadolski

是的,它有效,我不好,这是我自己的插件检查Gradle版本的问题。
sandrstar

7

见下文:

applicationVariants.all { variant ->
    variant.outputs.all { output ->
        def newApkName = applicationId + "-" + variant.versionName + "(" + variant.versionCode + ")" + ".apk";
        outputFileName = new File("${project.projectDir}/../outputs/apks/" + variant.name, newApkName);
    }
}

1
可行

我需要更改输出文件路径,而不仅仅是名称。
Amrut Bidri '17

出现错误:设置输出文件名时不支持绝对路径
ozmank

4

下面的代码为我在android studio金丝雀3.0.0-alpha3上工作

android.applicationVariants.all {
    variant.outputs.all {
        def newApkName
        newApkName = "APPLICATION_NAME-" + defaultConfig.versionName + "-" + defaultConfig.versionCode".apk"
        outputFileName = newApkName;
    }
}

这将更改apk文件名


无法获取类型为com.android.build.gradle.internal.api.ApplicationVariantImpl的对象的未知属性“ variant”。
ozmank

2

这是此问题的完整示例

只需在产品调味后粘贴gradle 3.0+

    android.applicationVariants.all { variant ->
    variant.outputs.all {

        def SEP = "_"
        def flavor = variant.productFlavors[0].name
        def buildType = variant.variantData.variantConfiguration.buildType.name
        def version = variant.versionName
        def versionCode = variant.versionCode
        def date = new Date();
        def formattedDate = date.format('ddMMyy_HHmm')

        outputFileName = "${flavor}${SEP}${buildType}${SEP}${version}${SEP}${versionCode}${SEP}${formattedDate}.apk"
    }
    }

您是否将其粘贴到gradle 3.0及更高版本中?你可以把especific错误?
Pabel

0

我创建gradle 3.0不再起作用。源链接

但是,涉及访问outputFile对象的更复杂的任务不再起作用。这是因为在配置阶段不再创建特定于变体的任务。这导致插件不预先知道其所有输出,但这也意味着更快的配置时间。

然后我使用命令gradlew来编译project.andcp输出apk到我指定的路径

在Execute shell中,我将命令放在下面。

./gradlew clean assembleDebug
cp $WORKSPACE/app/build/outputs/apk/debug/*.apk $WORKSPACE/JenkinsApk

您能分享这个例子吗?
Amrut Bidri '17

0

我有同样的问题。错误“无法设置只读属性'outputFile'的值...。”

因此,我要做的是在“项目结构”窗口中将Android插件存储库的版本更改为2.3.3。现在可以正常工作,并且该错误不再出现。

项目结构

稍后,为项目执行“清理并重建”就这样

希望这对您有帮助。


0

提出问题已经过去了一年半,但这也许会对第一个发现此帖子的人(如我)有所帮助。我相信答案更改文件名和目录进行回答这里

applicationVariants.all { variant ->
        variant.outputs.all { output ->
            def relativeRootDir = output.packageApplication.outputDirectory.toPath()
                     .relativize(rootDir.toPath()).toFile()
            output.outputFileName = new File( "$relativeRootDir/release", newOutputName)
        }
    }

-1

在更新到Android Studio 3.0.0并使用新的gradle之后,现在,apk的输出将按口味名称和构建类型分布在目录中。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.