diff --git a/compile.sh b/compile.sh
index e7928273ff43232f7e2366fd36d0b1b37ecc306a..e0f41f2f8e8dfd537120778f986f5440f598a8bf 100755
--- a/compile.sh
+++ b/compile.sh
@@ -54,7 +54,7 @@ if [[ $DAEMON_ONLY -eq 0 ]]; then
         echo "Building with Firebase support"
     fi
     if [[ $RELEASE -eq 1 ]]; then
-        cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleRelease
+        cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleRelease bundleRelease
     else
         cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleDebug
     fi
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index 674cd0cd2e0bb5744878f5b43ecc222812419dee..9d12600b793b230b4fc84af3df4bab8450becf8a 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -23,7 +23,7 @@ platform :android do
   desc "Submit a new Build to the Google Play Store"
   lane :playstore do |options|
     gradle(
-      task: "assemble",
+      task: "bundle",
       flavor: "withFirebase",
       build_type: "Release",
       print_command: false,
@@ -46,7 +46,7 @@ platform :android do
   desc "Submit a new Beta Build to the Play Store Beta channel"
   lane :beta do |options|
     gradle(
-      task: "assemble",
+      task: "bundle",
       flavor: "withFirebase",
       build_type: "Release",
       print_command: false,
@@ -69,7 +69,7 @@ platform :android do
   desc "Submit a new Build to the Play Store"
   lane :production do |options|
     gradle(
-      task: "assemble",
+      task: "bundle",
       flavor: "withFirebase",
       build_type: "Release",
       print_command: false,