Skip to content

Commit

Permalink
Clean up tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
philips77 committed Oct 7, 2021
1 parent 93ada34 commit 515f156
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,43 +16,12 @@
default_platform(:android)

platform :android do
desc "Runs all the tests"
lane :test do
gradle(task: "test")
end

desc "Submit a new Beta Build to Crashlytics Beta"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics

# sh "your_script.sh"
# You can also use other beta testing services here
end

desc "Deploy libraries to Nexus."
lane :deployNexus do
gradle(task: "publishToSonatype closeAndReleaseSonatypeStagingRepository")
end

desc "Deploy build to Alpha channel."
lane :deployAlpha do
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: 'alpha',
aab: 'sample/build/outputs/bundle/release/sample-release.aab'
)
end

desc "Deploy build to Beta channel."
lane :deployBeta do
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: 'beta',
aab: 'sample/build/outputs/bundle/release/sample-release.aab'
)
end

desc "Deploy build to Internal channel."
lane :deployInternal do
gradle(task: "clean bundleRelease")
Expand All @@ -62,10 +31,4 @@ platform :android do
)
end

desc "Generate internal Play Store link to the app"
lane :deployInternalLink do
gradle(task: "clean bundleRelease")
upload_to_play_store_internal_app_sharing(aab: 'sample/build/outputs/bundle/release/sample-release.aab')
end

end

0 comments on commit 515f156

Please sign in to comment.