Android APK Installation Guide

Unlike Apple, Android allows you to install your app directly in your phone by using an APK file. You can use this method for you or your team to test your final app without needing to follow the publishing method.

Install Debug APK on your phone

  1. From your Android device, download the APK you received in your email, which will look like this:

  2. You might see a warning message, don't worry, it's just a default message for apps downloaded outside of Google Play. Press Ok to proceed with the download.

  3. Once the download finishes, click on Open.

  4. *If you didn't allow installation of unknown apps, you will see the following alert. Proceed to Step 7 otherwise.

  5. Click on SETTINGS and enable Allow app installs checkbox

  6. Go back and you should see the install popup now. In case you don't see the below screenshot, locate app-debug.apk you downloaded in the previous step and open it. By default, this file will be downloaded into a "Downloads" folder. Use your file explorer preferred app to locate it. If you are not able to find it, you can just download it from Bravo email again

  7. Click on INSTALL and wait until the installation completes.

  8. You might see an alert titled Blocked by Play Protect. Don't worry, this is just an informative message that appears when trying to install apps outside of Google Play. Click INSTALL ANYWAY.

  9. You might see a popup titled Send app for scanning? - Click SEND or DON'T SEND to close this window, it's irrelevant

  10. Your app has been installed. Click OPEN and enjoy!

For Android versions below 8.0, you have to enable Unknown Sources inside phone settings.

  1. Go to your phone’s Settings.

  2. Tap Security.

  3. Scroll down to the Device Administration section, and enable Unknown Sources.

Install Debug APK on Emulator

This guide assumes you have an Android Studio installed. Otherwise, please do it before starting: https://developer.android.com/studio

  1. Open AVD Monitor, from any of these places, whether or not you have an Android project opened.

  2. Click on + Create Virtual Device

  3. Choose a device definition that includes Play Store. For example, Pixel 3a. Click Next.

  4. Select a system image of your choice. Make sure is version 7 and up. For example, let's go with Android Pie. Click Next.

  5. In the final screen you can change the name of your created emulator, if you wish. Click Finish.

  6. Click the green triangle on the right side of your created emulator to launch it

  7. Your emulator is ready to use.

  8. The easiest way to install your debug APK is to set up the same email account where you received it, and then download it. Once downloaded, open the file and skip to step 16.

  9. Another option is by sending the APK file to your emulator. First, download app-debug.apk file from your email to your computer.

  10. In Android Studio, open Device File Explorer (check screenshot, it's located on the bottom right side, placed vertically)

  11. Go to the folder where you want to place the file, for example, sdcard/Download folder. Right-click on it and select Upload...

  12. Select the app-debug.apk from your computer, the one downloaded on step 9, and click Open.

  13. APK file should be copied into your emulator

  14. In your emulator, swipe up from the bottom of the screen and open Files app

  15. Locate app-debug.apk inside Downloads folder ****and double click on it.

  16. You might see a warning related to installing unknown apps. Click CONTINUE.

  17. Click INSTALL

  18. Click INSTALL ANYWAY if a Blocked by Play Protect popup appears

  19. Your app has been installed in the emulator. Click OPEN ****and enjoy!

Install Publishable APK

You need Android SDK to be able to run adb install. Find the steps here.

That's it! 🎉

Last updated