Taylor Beiser
Taylor Beiser
Sometimes after viewing a downloaded image from the DocumentDirectory it will look corrupted (half gray image), once I hard close and open back up the image looks fine. So my...
@nitaliano I followed the documentation here to generate the APK. [https://facebook.github.io/react-native/docs/signed-apk-android.html#content](https://facebook.github.io/react-native/docs/signed-apk-android.html#content) Here is the app/build.gradle ``` apply plugin: "com.android.application" import com.android.build.OutputFile project.ext.react = [ entryFile: "index.js" ] apply from: "../../node_modules/react-native/react.gradle"...
@nitaliano same issue after removing
Could it be in the settings.gradle? I remember I had to remove a duplicate include for mapbox. The one I removed was prefixed with an @ symbol. ``` rootProject.name =...
@nitaliano Running react-native link marks @mapbox/react-native-mapbox-gl as unlinked for android. ``` rnpm-install info Platform 'ios' module @mapbox/react-native-mapbox-gl is already linked rnpm-install info Linking @mapbox/react-native-mapbox-gl android dependency rnpm-install info Platform 'android'...
@nitaliano Figured out my issue was caused by using using an ImageSource layer and having the image url dynamic by using a prop. The only way I could get this...
Thank you @nitaliano , unfortunately that did not work in the release build but it did work in debug mode. Is there a proper way to hardcode a local image?...
@nitaliano The following works in release mode, an image from our server. I can't give exact location for confidential reasons. ``` ``` The following works on iOS release mode and...
we have an images file that references all the local project images. `import images from "../themes/images"` inside the images.js: ` hall: require("../assets/halls/hall.png"),` We use this practice in all parts of...
@nitaliano I was not able to get the resolveAssetSource method to work in release mode, however, I was able to get this to work with react-native-fs. I placed the images...