1. ホーム
  2. android-studio

[解決済み] Android Gradle 3.0.0-alpha2 プラグイン、読み取り専用プロパティ 'outputFile' の値を設定できない。

2023-04-22 14:38:52

質問

私はこのコードを使っていました

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' の値を設定することができません....

どのように解決するのですか?

として 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"
    }
}