Nick Italiano
Nick Italiano
how are you generating your APK? Can you post your `app/build.gradle`?
@beisert1 don't ship your app like this if this works, but can you remove `proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"` under `buildTypes.release` I'm wondering if some classes could be getting stripped from the...
react native link is a disaster it only works for simple use cases not when the repo has heavy native deps like this one. Look at how the example app...
@beisert1 dynamic urls are not supported in the native SDKS try something like this ``` renderImageSource() { if (!this.state.url) { return null; } return ( ) } ```
can you show me what your url looks like? is it an image that gets required in the javascript?
It works with the packager because with the packager the url will be making an http request, when you put React Native into release mode the packager is taken out...
@ClayChristmas are you using a TextureView or GLSurfaceView for the map?
Could you try setting `surfaceView={true}` on your MapView? This will go either really well or very poorly. The GLSurfaceView is the default view that our Android Maps SDK ships with...
line-gradient does not exist in the native sdks yet
This is a great example, we can get it worked into the v7 branch