Skip to content

Commit ad41ce1

Browse files
committed
Update fastfile
1 parent 0fe64f5 commit ad41ce1

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,13 @@ platform :android do
2323

2424
lane :beta do
2525
# Adjust the `build_type` and `flavor` params as needed to build the right APK for your setup
26-
gradle(
27-
task: 'assemble',
28-
build_type: 'Release'
29-
)
26+
gradle(task: "clean bundleRelease")
3027
upload_to_play_store(track: 'beta')
3128
end
3229

3330
desc "Deploy a new version to the Google Play"
3431
lane :deploy do
35-
gradle(task: "clean assembleRelease")
32+
gradle(task: "clean bundleRelease")
3633
upload_to_play_store
3734
end
3835
end

0 commit comments

Comments
 (0)