0

我在我的项目中使用 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 文件路径从根更改为其他子文件夹?

4

1 回答 1

0

尝试将 .env 文件移动到根文件夹并检查文件是否定义了“APP_VERSION_CODE”。要在其他文件夹中使用 env 文件,您需要在 android 和 ios 中手动添加插件以访问 env 文件。

于 2019-02-25T13:05:10.567 回答