From 2f0ab6dfb8f08bb4681440feb47b521e0e61cb7f Mon Sep 17 00:00:00 2001 From: eshc123 <> Date: Wed, 14 Aug 2024 23:04:51 +0900 Subject: [PATCH] mod Fastfile --- app/build.gradle.kts | 2 +- fastlane/Fastfile | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 7a0985b3..f4bea973 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -27,7 +27,7 @@ android { signingConfigs { create("release") { - storeFile = file("../mission-mate-keystore.jks") + storeFile = file("./mission-mate-keystore.jks") storePassword = gradleLocalProperties(rootDir, providers).getProperty("SIGNING_STORE_PASSWORD") keyAlias = gradleLocalProperties(rootDir, providers).getProperty("SIGNING_KEY_ALIAS") keyPassword = gradleLocalProperties(rootDir, providers).getProperty("SIGNING_KEY_PASSWORD") diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 2e7c8e78..2b1d9504 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -30,9 +30,16 @@ platform :android do # You can also use other beta testing services here end - desc "Deploy a new version to the Google Play" - lane :deploy do - gradle(task: "clean assembleRelease") - upload_to_play_store + desc "Submit a new Release Build to Firebase App Distribution" + lane :publishDevDebug do + beta + + firebase_app_distribution( + service_credentials_file: "firebase_credentials.json", + app: ENV["APP_ID"], + groups: "QA", + release_notes: "Test version of devDebug build." + ) end + end