AndroidStudio之自定義輸出包名報錯 Cannot set the value of read-only property 'outputFile' for

lvxiangan發表於2018-11-13

AndroidStudio 3.0後,自定義apk包名出錯: Cannot set the value of read-only property 'outputFile' for ApkVariantOutputImpl_Decorated{apkData=Main{type=MAIN, fullName=debug, filters=[]}} of type com.android.build.gradle.internal.api.ApkVariantOutputImpl.

解決方案直接貼程式碼吧:

在app.gradle的android節點中新增

android {
....................
....................

buildTypes {
    release {
        // 使用混淆:true
        minifyEnabled false
        // Zipalign優化
        //zipAlignEnabled true
        // 移除無用的resource檔案
        //shrinkResources true
        // 前一部分代表系統預設的android程式的混淆檔案,該檔案已經包含了基本的混淆宣告,後一個檔案是自己的定義混淆檔案
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

        // 自定義包名
        applicationVariants.all { variant ->
            variant.outputs.all { output ->
                // test_版本號_yyyymmdd_release.apk
                def fileName = "test_release_${variant.versionName}_${releaseTime()}.apk"
                def outFile = output.outputFile
                if (outFile != null && outFile.name.endsWith('.apk')) {
                    outputFileName = fileName
                }
            }
        }
    }
}

....................
....................
}



def releaseTime() {
    return new Date().format("yyyyMMdd", TimeZone.getTimeZone("UTC"))
}


dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:support-v4:27.1.1'
}

 

相關文章