From e4e4260594abcad9d1f8ec79fe12e24c99305148 Mon Sep 17 00:00:00 2001
From: Karthik Shetty <karthik.shetty@niveussolutions.com>
Date: Wed, 7 Feb 2024 04:55:23 +0000
Subject: [PATCH] Update Fastfile

---
 fastlane/Fastfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index b9ead40..ae5bdda 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -24,10 +24,12 @@ platform :android do
   ######## FIREBASE DISTRIBUTION  ########
   desc "Submit a new Google Test Build to Firebase App Distribution"
   lane :distributeViaFirebase do |options|
-     gradle(task: "bundleRelease")
+     #gradle(task: "bundleRelease")
+     gradle(task: "clean assembleDebug")
     
-     apk_path = "app/build/outputs/bundle/release/app-release.aab"
-
+     #apk_path = "app/build/outputs/bundle/release/app-release.aab"
+     apk_path = "app/build/outputs/apk/release/app-release-unsigned.apk"
+     
      firebase_app_distribution(
            app: ENV["FIREBASE_APP_ID"],
            apk_path: apk_path,
-- 
GitLab