File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
template/android/app/src/main/java/com/boilerplate Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env node
2- const { rmdir } = require ( 'fs' ) . promises ;
2+ const { rm } = require ( 'fs' ) . promises ;
33const { applyPlugins } = require ( './template/plugins' ) ;
44
55applyPlugins ( ) . then ( async ( ) => {
6- await rmdir ( './plugins' , { recursive : true } ) ;
6+ await rm ( './plugins' , { recursive : true } ) ;
77} ) ;
Original file line number Diff line number Diff line change 44import com .swmansion .reanimated .ReanimatedJSIModulePackage ;
55import android .app .Application ;
66import android .content .Context ;
7+ import com .facebook .react .bridge .JSIModulePackage ;
78import com .facebook .react .PackageList ;
89import com .facebook .react .ReactApplication ;
910import com .facebook .react .ReactInstanceManager ;
1011import com .facebook .react .ReactNativeHost ;
1112import com .facebook .react .ReactPackage ;
1213import com .facebook .soloader .SoLoader ;
14+ import com .swmansion .reanimated .ReanimatedJSIModulePackage ;
1315import java .lang .reflect .InvocationTargetException ;
1416import java .util .List ;
1517
@@ -38,7 +40,7 @@ protected String getJSMainModuleName() {
3840
3941 @ Override
4042 protected JSIModulePackage getJSIModulePackage () {
41- return new ReanimatedJSIModulePackage (); // <- add
43+ return new ReanimatedJSIModulePackage ();
4244 }
4345 };
4446
You can’t perform that action at this time.
0 commit comments