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 ...@@ -54,7 +54,7 @@ if [[ $DAEMON_ONLY -eq 0 ]]; then
echo "Building with Firebase support" echo "Building with Firebase support"
fi fi
if [[ $RELEASE -eq 1 ]]; then if [[ $RELEASE -eq 1 ]]; then
cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleRelease cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleRelease bundleRelease
else else
cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleDebug cd $ANDROID_APP_DIR && ./gradlew $GRADLE_PROPERTIES assembleDebug
fi fi
......
...@@ -23,7 +23,7 @@ platform :android do ...@@ -23,7 +23,7 @@ platform :android do
desc "Submit a new Build to the Google Play Store" desc "Submit a new Build to the Google Play Store"
lane :playstore do |options| lane :playstore do |options|
gradle( gradle(
task: "assemble", task: "bundle",
flavor: "withFirebase", flavor: "withFirebase",
build_type: "Release", build_type: "Release",
print_command: false, print_command: false,
...@@ -46,7 +46,7 @@ platform :android do ...@@ -46,7 +46,7 @@ platform :android do
desc "Submit a new Beta Build to the Play Store Beta channel" desc "Submit a new Beta Build to the Play Store Beta channel"
lane :beta do |options| lane :beta do |options|
gradle( gradle(
task: "assemble", task: "bundle",
flavor: "withFirebase", flavor: "withFirebase",
build_type: "Release", build_type: "Release",
print_command: false, print_command: false,
...@@ -69,7 +69,7 @@ platform :android do ...@@ -69,7 +69,7 @@ platform :android do
desc "Submit a new Build to the Play Store" desc "Submit a new Build to the Play Store"
lane :production do |options| lane :production do |options|
gradle( gradle(
task: "assemble", task: "bundle",
flavor: "withFirebase", flavor: "withFirebase",
build_type: "Release", build_type: "Release",
print_command: false, print_command: false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment