经过一些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);
}
}
如何通过本机expo应用程序使用此功能增加AsyncStorage的默认大小限制(6mb)?
可以使用此功能吗?