FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How to Set Up Android CI/CD with GitHub Actions — Firebase Distribution & Play Store
How-ToDevOps

How to Set Up Android CI/CD with GitHub Actions — Firebase Distribution & Play Store

via Dev.to TutorialAleksandr Ilinskiy1mo ago

Setting up CI/CD for Android apps on GitHub Actions is straightforward once you know the gotchas. This guide covers everything: building signed APKs/AABs, caching Gradle, deploying to Firebase Distribution for testers, and publishing to Play Store. Prerequisites An Android project with Gradle (Groovy or Kotlin DSL) A GitHub repository For Firebase: a Firebase project with your app added For Play Store: a Google Play Console account with your app set up Step 1: Make Gradlew Executable This trips up almost everyone on their first CI run. Your gradlew file might not be executable in Git: git update-index --chmod = +x gradlew git commit -m "Make gradlew executable" Or add this step to your workflow (we'll include it below). Step 2: Create a Signing Keystore If you don't have one yet: keytool -genkeypair -v \ -keystore release.jks \ -keyalg RSA -keysize 2048 \ -validity 10000 \ -alias release \ -storepass YOUR_STORE_PASSWORD \ -keypass YOUR_KEY_PASSWORD \ -dname "CN=Your Name, O=Your Org" N

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
48 views

Related Articles

Red Rooms makes online poker as thrilling as its serial killer
How-To

Red Rooms makes online poker as thrilling as its serial killer

The Verge • 1d ago

Don’t Know What Project to Build? Here Are Developer Projects That Actually Make You Better
How-To

Don’t Know What Project to Build? Here Are Developer Projects That Actually Make You Better

Medium Programming • 1d ago

Why Most Developers
Stay Broke
How-To

Why Most Developers Stay Broke

Medium Programming • 2d ago

Building a Simple Lab Result Agent in .NET (Microsoft Agent Framework + Ollama)
How-To

Building a Simple Lab Result Agent in .NET (Microsoft Agent Framework + Ollama)

Medium Programming • 2d ago

“You don’t need to learn programming anymore” — Reality Check from a CTO
How-To

“You don’t need to learn programming anymore” — Reality Check from a CTO

Medium Programming • 2d ago

Discover More Articles