Skip to content

Instantly share code, notes, and snippets.

@Kashif-E
Created April 24, 2022 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kashif-E/7f8ee2655af0afd3bac42067b31cf6d2 to your computer and use it in GitHub Desktop.
Save Kashif-E/7f8ee2655af0afd3bac42067b31cf6d2 to your computer and use it in GitHub Desktop.
generating different type of builds with fastlane
1. gradle(task: "clean assembleRelease") will create a Release Apk
2. gradle( task: "assemble", // assemble is used for building apks
 flavor: "qa", // define your flavours here
build_type: "Release" ) will create a relase apk 
 
3. gradle( task: "bundle", //for generating AAB
 flavor: "qa", //your app flavour
build_type: "Debug" ) // will create a debug version of your app bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment