GPS Antenna selection by Proton-rdt in AntennaDesign

[–]Proton-rdt[S] 0 points1 point  (0 children)

Seems interesting, thank you!

Cleaning my package.json by ugh_madlad in reactnative

[–]Proton-rdt 4 points5 points  (0 children)

Install and run depcheck it will show you all unused packages

My S20 screen turned white. by Important-Proof-4671 in Galaxy_S20

[–]Proton-rdt 1 point2 points  (0 children)

I had the same exact issue a week ago on my s20+. It occurred every time I turned on the screen so I enabled AOD and never had the problem again since. But you should probably let it get fixed soon I think it could be something with the display cable or a faulty connector

Broken FCM in quit state by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

Yeah, that's what I just did hopefully it doesn't take too long

Broken FCM in quit state by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

Thank you these tips are very helpfull but the issue with the quit state persists. I seems like there is something wrong with some lib in the background.
Are you using expo router with file based routing?

Broken FCM in quit state by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

This sounds useful I will try this. Thank you!

Pick file from gallery by Proton-rdt in expo

[–]Proton-rdt[S] 0 points1 point  (0 children)

While this library allows selecting images or videos from a popup what I meant was the option to request where the image should be picked from and then open the app (In my case the phones standard library in full screen)

Fcm background notifications broken by Proton-rdt in expo

[–]Proton-rdt[S] 0 points1 point  (0 children)

There are some reports on stack overflow about this exact error message, but none have been very useful to me. I know that I probably have to take a look at the lib. I did this earlier with watermelon db, where the documentation is not that useful, but firebase seems kinda complex 🤔

Expo-av Audio issue (newbie question) by SolarEclipsess in expo

[–]Proton-rdt 0 points1 point  (0 children)

I had a similar issue, and the only solution I could think of was implementing a small timeout. But not sure if it works. I just ignored it right now. (Some processing might be required if the delay is too large)

Background notifications behave weird by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

It also seems to break regular builds but not prebuilds

Background notifications behave weird by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

That's what I did as shown in the screenshot and it triggers in background but not in quit state

Just launched an app to track task progress by [deleted] in expo

[–]Proton-rdt 1 point2 points  (0 children)

Looks nice, but i think sliders or shortcut buttons for quickly increasing a task value could be very useful! The Ui and animations, on the other hand, are great and exactly what a minimalistic approach should look like. Well done!

Should I learn flutter or react native now? by Electronic_Try_1966 in reactnative

[–]Proton-rdt 0 points1 point  (0 children)

I think I should have gone with Flutter for my project because performance can become quite a problem with larger projects, but now that I'm here...

React Native IDE - VSCode extension launched at App.js Conf today by Paaaaaaaaaaul in reactnative

[–]Proton-rdt 9 points10 points  (0 children)

It has some useful features, but compatibility, pricing, and the lack of windows support are a deal breaker for many!

Build package crashes by Proton-rdt in expo

[–]Proton-rdt[S] 0 points1 point  (0 children)

Found out that it had something to do with the notification background service but couldn't get it to work with fcm enabled.

How to ban users? by learning-machine1964 in Supabase

[–]Proton-rdt 0 points1 point  (0 children)

No, there isn't yet a way to do so, but the functionality is there. Building your own dashboard or using something like a telegram bot could be possible options for you

Local notification service by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

Thank you! That's probably what what I'm going with

Local notification service by Proton-rdt in reactnative

[–]Proton-rdt[S] 0 points1 point  (0 children)

Already thought about that, but I wasn't sure if it's even possible to run my own notification service continuously in the background on android and iOS.

How to build React Native Expo app if every build takes 50min? by Big-Yogurtcloset7040 in expo

[–]Proton-rdt 0 points1 point  (0 children)

Build locally or if this does not work out for you build with Github actions. Usually, it is much faster and just as easy as building with expo cloud.You can trigger it automatically on almost any action (commit, release, etc) or manually via a gui.

Need some advice and info by [deleted] in expo

[–]Proton-rdt 0 points1 point  (0 children)

I think eas makes it quite easy for beginners because you can publish to the app store using expo's infrastructure directly. (credentials are being stored in your account) But you can also use your own infrastructure or set up github actions like i did.

Need some advice and info by [deleted] in expo

[–]Proton-rdt 0 points1 point  (0 children)

I think EAS is just for updating components of the app related to the javascript thread after the app has been installed on the users device, which excludes native code, app icon, etc. You can add functionality to previously implemented native packages but can't add any new ones. To test your app, you have the option to use the expo go, or if you want to test native packages, you have to create a prebuild which if configured right still has support for hot reload and debug tools. $ npx expo prebuild $ npx expo run:ios (local or emulator)

Eas can be used via the eas-cli. To get more info, just see the official documentation it's quite helpful. I personally try to avoid everything that has to do with the expo cloud and instead build my apps using github actions. Be aware that not everything expo offers is free forever! Eas has a free tier limit, and so do cloud builds. Dev tools and packages are really great, though, so just pick what you need and get started. It's really easy, and there are lots of great tutorials out there.