Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何解决这个问题?React-Native TypeORM:循环依赖“t”Android Release build
让 typeorm 与 react native 一起工作是很棘手的。对我来说,唯一的解决方案是禁用缩小。在安卓上:
转到:android/app/build.gradle
编辑以下内容:
project.ext.react = [ enableHermes: true, // clean and rebuild if changing extraPackagerArgs: [ '--minify=false' ], ]