美文网首页
Android could not get unknown pr

Android could not get unknown pr

作者: 木猫尾巴 | 来源:发表于2017-08-28 14:05 被阅读418次

    [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

    相关文章

      网友评论

          本文标题:Android could not get unknown pr

          本文链接:https://www.haomeiwen.com/subject/pcfgdxtx.html