Google Play Store
Last updated
Was this helpful?
Last updated
Was this helpful?
Please note that Bubble supports publishing only to the Play Store and does not support alternative Android app stores.
If you haven’t already, please read our guide on configuring global settings .
To publish your Mobile app on Google Play, sign up to a Google Play Console developer account.
Once you're logged in, you'll see an option on the Home screen to create a new app. Fill out the initial fields—don’t worry, you can always update this information later if needed.
Your Google Play Console login is the same as your Google Play developer account. If you’ve used a Google API before (like Google Maps), you may already have a project in the Google Cloud Console.
However, it’s generally best to create a new project dedicated to your mobile app, especially if you're managing multiple apps or services.
Do Use Play Console For:
Creating a new app listing (name, description, screenshots, etc.)
Uploading your .aab file (Android App Bundle from Bubble)
Managing app releases and production tracks (internal testing, production)
Setting your app's pricing and distribution regions
Viewing crash reports and store performance analytics
Setting up privacy policies, app permissions, and content ratings
Don't Use Play Console For:
Managing API keys (e.g., Maps, Firebase, Google Sign-In)
Enabling external APIs
Handling Google Cloud billing
Use Cloud Console For:
Creating and managing API keys
Enabling services like:
Google Maps
Google OAuth login
Firebase Authentication or Analytics
Managing billing for paid API services
Configuring IAM roles and security permissions for APIs
Don't Use Cloud Console For:
Uploading app builds
Creating Play Store listings
Managing in-app purchases or pricing
Monitoring app reviews or ratings
Check out the table below for a side-by-side breakdown to help you find what you need to prepare your app for publishing.
Create a new app listing
Google Play Console
This is where you register your app, upload your .aab file, and configure the store listing.
Create a project
Google Cloud Console
Good practice: create one project per app to keep API keys and services organized.
Enable APIs like Maps, OAuth login, or FCM (Firebase Cloud Messaging)
Google Cloud Console
Bubble may require API keys or Firebase files uploaded in the app’s Mobile settings.
Set up screenshots, metadata, pricing
Google Play Console
Live in the Play Store
Generate your .aab
app bundle
Emailed to you during deploy
This is what you’ll upload to Google Play for your Android app build.
Generate a Keystore file
Your local machine (via terminal/command prompt)
Used to sign your app. Bubble guides you through this in their mobile setup.
Upload app assets, setup permissions, privacy policy, etc.
Google Play Console
Required for the app to pass review.
Upload Firebase files (google-services.json
and service-account-key.json
)
Bubble Editor – Settings – Mobile
These files are generated in Firebase (which is part of Google Cloud).
To create a new app, open the Google Play Console and click “Create app”.
This will create your app listing — where you'll manage everything from uploading builds to setting your app's title, description, pricing, and store visibility.
Follow the prompts to complete the app creation flow. Once done, you’ll be taken to your app dashboard.
In addition to the Play Console, you’ll also need a Google Cloud Console project. This is where you’ll generate the JSON key Bubble uses to upload your builds to Google Play automatically.
We recommend creating a separate Cloud project for each app you publish. This helps you keep API credentials, billing, and permissions cleanly organized by app.
When setting up your Google Cloud project (required for generating your JSON key), you may see an error like this:
"You do not have the required resourcemanager.projects.create permission to create projects in this location."
This usually means you're using a Google Workspace or company-managed account, and you don’t have the permission to create projects within that organization's folder.
You can usually create Google Cloud projects without issues.
You'll see “No organization” when choosing a location — this is totally fine.
Ideal if you’re publishing as an individual developer or small team.
Project creation may be restricted by an administrator.
You’ll need to request permission or have an admin:
Create the project for you, or
Assign you the Project Creator IAM role (resourcemanager.projects.create)
A JSON key is required to allow Bubble to securely communicate with your Google Play Console on your behalf. Specifically, it enables Bubble to upload your Android app builds directly to your Play Store account without you needing to manually handle each file.
This key comes from a service account you create in your Google Cloud project, and it acts like a secure credential that Bubble uses to authenticate with Google’s APIs. Without this key, Bubble can’t push builds or automate updates — so it’s a critical step for streamlining your Android app deployment process.
Once you're inside your new project:
Go to IAM & Admin > Service Accounts
Create a new service account
Make sure you're in the correct Google Cloud project by checking the Project ID:
Look for it in the light gray text inside the second input field (before .iam.gserviceaccount.com), or
Confirm the project name in the top navigation bar.
If it’s not correct, click the project picker in the top bar and switch to the right one.
Enter a Service account name (e.g., bubble-deploy-access).
After the account is created, copy the email address shown under the Service account ID — you’ll need it later.
Then generate a JSON key for that service account and download it (This is what you’ll upload to Bubble so it can push builds to Google Play.)
A keystore is a file that holds important security credentials, like cryptographic keys, used to sign your mobile app. This digital signature proves that your app comes from a trusted source and hasn't been altered.
Important: The keystore file is critical for future app updates. If it's lost, you won’t be able to push updates to your app on the Play Store. Be sure to store it somewhere secure and back it up.
The keystore you generate in this step will later be used to fill out the Code signing key, Key alias, and Key password fields in the Mobile settings subtab of your app.
Note: Open your command line interface:
macOS: Open Terminal (found in Applications > Utilities).
Windows: Open Command Prompt (search for cmd.exe).
Run the following command by pasting this into your terminal or command prompt:
Before you hit enter, make sure you customize KEY_ALIAS
to match your app:
Replace KEY_ALIAS
with a memorable name (like appname_keys
).
Use your arrow keys to move the cursor.
Do not use your mouse—it won’t work in the command line interface.
Press Enter once you're ready to run the command.
After pressing Enter, the terminal will ask you for a password. When typing your password, you won’t see any characters appear on the screen. This is normal and is done for security purposes.
Next it will prompt you with a few questions (such as your name and organization) and ask you to create a password for your keystore.
Press Enter after each response to move to the next question.
Choose a password you’ll remember and write it down—you’ll need it later during the app signing process.
Finishing Up the Keystore You may see a warning about migrating to a different keystore format—if so, just follow the on-screen instructions. You’ll need your keystore password to complete that step.
Once complete, your keystore file will be saved to your computer, typically in your user directory. It’s now ready to be uploaded to the Mobile settings page in Bubble.
If you want to move the file to another folder (like your Documents folder), you can use the following command:
Just replace KEYSTORE_OUTPUT_FILE.keystore
with the actual filename, and Documents with your desired destination folder.
Now that you have created a project and generated a Keystore, fill out your Android Mobile settings in your Bubble app. Below is a table to help you understand how to map each field accordingly.
Field
Description
Package Name
A unique ID for your app, equivalent to the iOS Bundle ID. so we recommend using the same value for both Bundle ID and Package name (ex. com.yourcompany.yourappname
).
Note: The package name can include uppercase and lowercase letters, numbers, and underscores (_). It's typically written in reverse-DNS format, such as com.yourcompany.yourapp.
JSON Key
Code signing key
Code signing key alias
Code signing key password
Keep it secure: The files you generate in this section grant access to Firebase services and should be treated like sensitive credentials—store them securely, just like API keys or login details.
Bubble supports Android push notifications using Firebase Cloud Messaging (FCM). To enable this, you’ll need to:
Generate and download your google-services.json
file.
Generate and download your Firebase service account key.
Upload both files in the Bubble Editor – Settings – Mobile section.
Step 1: Get your google-services.json
file
Go to the Firebase Console and sign in.
Click "Create a project" and follow the prompts.
If asked, select a parent resource (like your Firebase organization).
You may enable Google Analytics if you'd like—this is optional and not required for push notifications.
Wait a few moments while the project is being created.
Once your project is ready:
In the Project overview, click the Android icon where it says “Add an app to get started.”
Enter your Android package name (this must match the bundle ID used in your app).
(Optional) Add an App nickname—this won’t affect notifications.
(Optional) Add your Debug signing certificate SHA-1—not required for push notifications.
Click Register App.
Click Download google-services.json and save the file in a secure location.
Step 2: Get your Firebase service account key
In the Firebase Console, go to Project Settings.
Navigate to the Service Accounts tab.
Click "Generate new private key" and confirm.
Download the .json
key file and save it securely.
Step 3: Upload Files to Bubble
Open your Bubble app.
Go to Settings > Mobile.
In the Android settings section, scroll to Firebase Cloud Messaging (FCM).
Upload your google-services.json
file into the corresponding field.
Step 4: Upload the Firebase service account key
In the same Firebase Cloud Messaging (FCM) section of the Bubble editor,
Upload your Firebase service account key (.json
) into the Service account key field.
Before submitting your app to the Google Play Store, you need to generate a build. In Bubble, this involves completing all required Mobile settings— uploading your keystore, setting your package name, and configuring Firebase fields for push notifications if you're using them.
Once everything is set up, you can click to deploy your app. In doing so you will generate the .aab
file (Android App Bundle) which will be sent to your email when the build is complete. This file is required by Google Play and will be the one you upload to your developer console.
If you're using features like Google Maps, push notifications, or in-app purchases, make sure those services are fully enabled and configured in both Bubble and Firebase.
Before going live, it’s important to test your app across devices and user scenarios. The Google Play Console offers multiple testing tracks:
Internal testing: Ideal for quick testing with your team (up to 100 testers).
Closed testing: Invite specific users outside your team.
Open testing: Share your app with anyone via a public link.
Please note for open testing, you will need to fill out the Store Listing information below (that you can find under the review step)
Upload your .aab
file under the Testing section in the Play Console. You’ll be able to create a test release and invite users via email or opt-in link. Make sure to check key functionality, performance, responsiveness, and loading times across different Android devices.
This is also your best chance to get early feedback and catch any bugs or user experience issues before you submit the app for review.
Once testing is complete and your app feels solid, it’s time to prep for Google’s review process. This step includes creating your Store Listing, which includes:
App name and short description
Full app description
App category
Screenshots and graphics
Privacy policy URL
You’ll also be required to complete forms for your app’s content rating, target audience, and data safety practices.
Take your time here—ensure all details are accurate and in compliance with Google’s Developer Policies. Incorrect or incomplete information (especially regarding user data or permissions) can lead to delays or rejections. Once submitted, your app will enter the review queue, which usually takes a few business days (longer for first-time developers).
When your app is approved, it’s time to publish! In the Release > Production section of the Play Console, you can choose between two options:
Full rollout: Instantly make your app available to all users.
Staged rollout: Gradually release to a small percentage of users and monitor performance.
Staged rollouts are a smart choice if you want to catch any final issues at scale before releasing the app more broadly.
Once live, your app will appear in the Google Play Store and begin reaching users. After publishing, you’ll want to keep an eye on user reviews, crash reports, and usage metrics to track performance and user satisfaction.
Mobile apps are rarely "done." Over time, you’ll want to publish updates to fix bugs, improve features, or respond to user feedback. The update process is very similar to your initial submission.
To update your app:
Make your changes in Bubble.
To publish a new version, you can simply change the release type in the app settings. For smaller updates, consider using an OTA (Over-the-Air) update instead.
Generate a new .aab
file.
Upload it in the Play Console under Release – Production.
Write clear release notes summarizing what’s new or improved.
Even for minor changes, it’s best practice to test your new version before releasing it. For larger updates, consider another staged rollout.
The Google Play Console is used for publishing your app to the Play Store.
Used for enabling Google APIs and services that your app might use.
Important: Please make sure you have Java installed on your machine when generating a keystore. You can install Java through . Download here if it’s not already installed.
The JSON key is located in a file that will be uploaded to the Mobile settings subtab. You can generate this file by following. This will require using the Google Cloud Project that you set up earlier.
This is the file that was saved to your computer when you generated a in the previous.
This is the name you set in the initial command when generating the (i.e. what you replaced KEY_ALIAS
with). If you did not make any changes to the initial command, then this value will be key_alias.
This is the password you used when generating the.