google / secrets-gradle-plugin

A Gradle plugin for providing your secrets to your Android project.
Apache License 2.0
1.17k stars 106 forks source link

defaultConfig contains custom BuildConfig fields, but the feature is disabled. #101

Open 14likhit opened 1 week ago

14likhit commented 1 week ago

getting below build error

Cause: defaultConfig contains custom BuildConfig fields, but the feature is disabled.
To enable the feature, add the following to your module-level build.gradle:
android.buildFeatures.buildConfig true
14likhit commented 1 week ago

adding below code in build.gradle resolves the issue

    ...
    buildFeatures {
        buildConfig = true
    }
}

Can we update same in readme.md ?