Created
December 1, 2021 17:06
-
-
Save shafayathossain/0849b2d4dca0b2baefe73b5d5e4da4fa to your computer and use it in GitHub Desktop.
Build the .aab file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc "Build the .aab file" | |
lane :build do | |
gradle( | |
task: "bundle", | |
build_type: "Release", | |
properties: { | |
"android.injected.signing.store.file" => KEYSTORE_PATH, | |
"android.injected.signing.store.password" => ENV['KEYSTORE_PASSWORD'], | |
"android.injected.signing.key.alias" => ENV['KEYSTORE_ALIAS'], | |
"android.injected.signing.key.password" => ENV['KEYSTORE_PASSWORD'] | |
} | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment