Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mod Fastfile #30

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading