Debug Github Actions Tips
Debugging GitHub actions, or any kind of CI runner, is time consuming. I usually mess up secrets that depend on exact structure, like private keys. First tip: use base64 to encode and decode secrets. Also, watch...
Hi, I'm Ana and welcome to my dev blog. I share insights and practical solutions to coding problems that I face at work or my hobby dev time. Subscribe for new articles and check out my latest tutorials on YouTube.
Don't miss out and subscribe to my newsletter, or explore other ways to follow my content.
Debugging GitHub actions, or any kind of CI runner, is time consuming. I usually mess up secrets that depend on exact structure, like private keys. First tip: use base64 to encode and decode secrets. Also, watch...
Getting Google login to work in Expo native and web isn't hard to code. It's the setup that trips you up. If you don't know what to watch out for....
T0 monetize your app in App Store, first step is to configure subscription/app pricing or in-app products in App Store Connect. Select your app and select Subscriptions from the sidebar. Like the notification at the...
T0 monetize your app in Play Store, first step is to configure subscription/app pricing or in-app products in Google Play Console. I'll be explaining the process for subscription. I usually create 2 kinds...
For tracking users actions in an Expo app I use Firebase and Google Analytics. Firebase is a good choice because it integrates well with Expo and supports Google Analytics out of the box. Ask the user...
Introduction to firebase setup for native, web and expo go. Yes, rn firebase won't work in expo go, but firebase for web will. Link to github example included....