React-Native TypeORM: Cyclic dependency “t” Android Release build

169 Views Asked by At

how do you resolve this problem? React-Native TypeORM: Cyclic dependency “t” Android Release build

1

There are 1 best solutions below

0
On

Getting typeorm to work with react native is tricky. For me the only solution was to disable minification. On android:

Go to : android/app/build.gradle

Edit the following:

project.ext.react = [
    enableHermes: true,  // clean and rebuild if changing
    extraPackagerArgs: [ '--minify=false' ], 
]