我有一个使用 hiveDB 的颤振应用程序,它在 iOS 设备和模拟器上运行良好,但是在 macOS 上构建它时,会弹出以下错误。
Unhandled Exception: HiveError: Cannot read, unknown typeId: 32. Did you forget to register an adapter?
这是我的主要方法:
main() async {
WidgetsFlutterBinding.ensureInitialized();
await Hive.initFlutter();
Hive.registerAdapter(PriceAdapter());
Hive.registerAdapter(AmountAdapter());
Hive.registerAdapter(CustomerAdapter());
Hive.registerAdapter(ProductAdapter());
Hive.registerAdapter(FactorAdapter());
await Hive.openBox<Product>(TableName.PRODUCT);
await Hive.openBox<Factor>(TableName.FACTOR);
runApp(MyApp());
}