看到ReactNative应用程序内剩余的内存?

时间:2019-06-13 14:36:02

标签: react-native memory

有没有一种方法可以检查设备上剩余的RAM内存。我只关心Android设备。

我尝试了react-native-vitals,但无法正常工作。

1 个答案:

答案 0 :(得分:0)

我设法用react-native-vitals解决了这个问题。 他们的文档是错误的:

文档说:

Vitals.getMemory(memory => {
  console.log("memory:", memory, "");
});

但是应该这样做:

Vitals.getMemory().then(memory => {
  console.log("memory:", memory, "");
});