Skip to content

Commit

Permalink
mod Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
eshc123 committed Aug 14, 2024
1 parent 69ec1cc commit 2f0ab6d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
15 changes: 11 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2f0ab6d

Please sign in to comment.