Hi Team , I am getting below attached error while ...
# multiplatform
l
Hi Team , I am getting below attached error while integrating BuildKonfig library . Can anyone suggest how can I solve this one ?
b
Hey, @Logic Gupta ! It seems you haven't included a non-flavored
defaultConfig
in your core module. According to documentation, you need to specify
defaultConfig
in your
gradle
file it as follows:
Copy code
defaultConfigs("dev") {
        buildConfigField 'STRING', 'name', 'devValue'
}
l
Thanks ,:)