Duke Wu
Duke Wu
It seems that the Tailscale client will override the system's DNS settings on macOS. When I enabled `Use TailScale DNS Settings` and queried the DNS via the dig command, I...
@IshimaruKenta Is VoodooI2C loaded? Try `sudo kextcache -i /` and restart.
Seems like BIOS setting error, see [xps-bios-setting](https://www.insanelymac.com/forum/topic/331715-guide-dell-xps-15-9560-high-sierra-10132/)
[opencore](https://github.com/geek5nan/Hackintosh-Z270i/tree/opencore) 分支已上传
在 10.15.4 上使用 opencore 0.5.7 时,可能无法恢复的错误,已暂时回退到 clover 引导中,待问题解决后再尝试 opencore
全面拥抱 OpenCore 1. OpenCore 更新至 0.6.3 2. 更新 config.plist ,适配 macOS Big Sur 11.0.1 3. Kext 驱动全部更新至最新版
不错,马克一下。
通过 WireGuard、TailScale 以及 NetBird 了解到的
不妨换个想法,在不同的子模块分别写 @Entity、 @Dao 以及 @View,然后将这些子模块在 app 模块进行聚合,如下所示。 * App ```kotlin @Database( entities = [ EntityA1::class, EntityA2::class, EntityB1::class, EntityB2::class ], views = [ ], version = 1, autoMigrations = [ ]...
@nicelyjust 题主担心多个模块各自实现一个 `RoomDatabase`可能会带来内存占用过高的问题。 我的建议是仅在 App 模块实现 `RoomDatabase` ,在这个单一的 `RoomDatabase` 上,组合各模块定义的 `@Entity`, `@Dao`,避免存在多个 `RoomDatabase` 。