Skip to content
Snippets Groups Projects
Commit 3542db4c authored by Adrien Béraud's avatar Adrien Béraud
Browse files

build: publish Android App Bundle (aab) instead of APK

Change-Id: I54965635cc66e0fd10ffe99cd8d41a78a4ef35e6
parent 5470fa47
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment