我在我的项目中使用 react-native-config 并且我的 .env 文件存在于子文件夹而不是根路径中。在 build.gradle 文件中我有:
project.env.get("APP_VERSION_CODE").toInteger()
但是当我运行应用程序时:
* What went wrong:
A problem occurred evaluating project ':app'.
> Cannot invoke method toInteger() on null object
当我将 .env 文件复制到根路径时,它工作正常。如何将默认 .env 文件路径从根更改为其他子文件夹?