如何通过Expo增加React Native应用中的AsyncStorage限制

时间:2019-07-08 10:05:57

标签: javascript reactjs react-native expo asyncstorage

经过一些Google搜索,我在模块内部找到了该函数,该函数可以让您增加sqllite数据库的大小,但是我不知道如何在我的react-native应用程序中使用它:

  

react-native / ReactAndroid / src / main / java / com / facebook / react / modules / storage / ReactDatabaseSupplier.java

 /**
   * Sets the maximum size the database will grow to. The maximum size cannot be set below the
   * current size.
   */
  public synchronized void setMaximumSize(long size) {
    mMaximumDatabaseSize = size;
    if (mDb != null) {
      mDb.setMaximumSize(mMaximumDatabaseSize);
    }
  }

Link to the function.

如何通过本机expo应用程序使用此功能增加AsyncStorage的默认大小限制(6mb)?

可以使用此功能吗?

0 个答案:

没有答案