android – 声明buildConfigField时使用local.properties字段

前端之家收集整理的这篇文章主要介绍了android – 声明buildConfigField时使用local.properties字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个build.gradle和一个local.properties文件.我想在local.properties中声明一个值,该值未签入版本控制,以在build.gradle中使用.

我有buildConfigField使用:

buildTypes {
    debug {
        buildConfigField "String","TEST","test"
    }
}

不幸的是,这会导致错误

buildTypes {
    debug {
        buildConfigField "String",local.properties.get("test")
    }
}

@R_301_323@

它可以实现如下:
def getProps(String propName) {
  def propsFile = rootProject.file('local.properties')
  if (propsFile.exists()) {
    def props = new Properties()
    props.load(new FileInputStream(propsFile))
    return props[propName]
  } else {
    return "";
  }
}

在您的buildTypes块中:

buildTypes {
    debug {
        buildConfigField "String",getProps("test")
    }
}

猜你在找的Android相关文章