Hi Community,
I want to use Bitrise for my Android application, but I have the following error:
* What went wrong:
A problem occurred evaluating project ':app'.
> Could not get unknown property 'MOVIE_DB_API_KEY' for object of type com.android.build.gradle.internal.dsl.BaseAppModuleExtension.
I declared it in my app.gradle:
buildTypes.each {
it.buildConfigField 'String', 'MOVIE_DB_API_KEY', MOVIE_DB_API_KEY
}
Where MOVIE_DB_API_KEY is declared in my gradle.properties file.
However, for security reasons, I didn’t load this key, so I added as a Secret Environment Variables, but apparently that didn’t work