Android could not get unknown property for 'applicationVariants'

[TOC]

错误表现

could not get unknown property for 'applicationVariants' for BuildType xxxx

原因

buildTypes {
    release {
        applicationVariants.all { variant ->
            appendVersionName(variant, defaultConfig)
        }
    }
}

applicationVariants 只包含在 apply plugin: 'com.android.application' 插件中

修复方法

如果使用 apply plugin: 'com.android.library'

buildTypes {
    release {
       libraryVariants.all { variant ->
            appendVersionName(variant, defaultConfig)
        }
    }
}

说明

  • applicationVariants 只在 com.android.application
  • libraryVariants 只在 com.android.library
  • testVariants 都含有,但一般只有默认的 debug
    原文作者:木猫尾巴
    原文地址: https://www.jianshu.com/p/261415628011
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞