cesar omar

Results 8 comments of cesar omar

@RafaelFeiten @yoojeen126 This is how I made it works Selected `Libraries/RNiBeacon.xcodeproj` then on TARGETS select `RNiBeacon`, look for `Header Search Paths` and I added these paths `$(SRCROOT)/../../../../ios/Pods/Headers/Public/React-Core` `$(SRCROOT)/../../../react-native/ReactCommon` Both are...

This doesn't works after add this pluggin ``` UNEXPECTED TOP-LEVEL ERROR: java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:3664) at java.lang.String.(String.java:207) at java.lang.String.substring(String.java:1933) at com.android.dx.rop.type.Prototype.withFirstParameter(Prototype.java:3 70) at com.android.dx.rop.type.Prototype.intern(Prototype.java:180) at com.android.dx.cf.iface.StdMethod.(StdMethod.java:46) at...

4 years after and still failing :/

In case someone have this issue, This worked for me :/ ``` server.get(/\/?.(js|css|png|jpg)/, restify.plugins.serveStatic({ directory: './public', default: '/index.html' })); server.get(/\/?.*/, restify.plugins.serveStatic({ directory: './public', file: '/index.html' })); ```