Patrick
Patrick
.. and I´m trying to get pushmeup to work with a pem file in an environment variable on heroku Thought I´m doing it wrong.. Would be very nice to merge...
The fix is to add an own index name to the attachinariable reference. `t.references :attachinariable, polymorphic: true, index: {name: "index_attachinary_files_attachinariable"}`. Also note that I added `[5.1]` to the ActiveRecord::Migration Class...
For all having the same problem: The quick fix is to use @ThomasConnolly ´s version right now. Just include it in your gem file as follows: `gem 'attachinary', :git =>...
The only thing that worked for me was disabling Hermes in app/build.gradle ``` project.ext.react = [ enableHermes: false, // clean and rebuild if changing ] ```
No idea if it's because of react-native 0.70.4 and new build architecture but my Lottie animations do not work on Android anymore after upgrading RN. They work on iOS though....
Adding the following line, grade clean, delete app from testing device and rebuild helped. `````` According to https://developer.android.com/training/scheduling/alarms we need to prompt the user. No idea how to do that...
Works ``` packagingOptions { pickFirst '**/libc++_shared.so' pickFirst '**/libfbjni.so' } ```
I had this error for over a year now. Finally solved it by upgrading `react-native-reanimated` to the latest version.
Had the same issue in ```"react-native": "^0.71.0"```. Tested with latest ```"react-native": "^0.71.6"```. Issue is still there.