Fix fastlane file

This commit is contained in:
Sylwester Zieliński
2022-02-02 17:28:21 +01:00
parent 0f4517da7c
commit d268971472

View File

@@ -47,7 +47,7 @@ platform :android do
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: 'alpha',
aab: 'sample/build/outputs/bundle/release/sample-release.aab'
aab: 'app/build/outputs/bundle/release/sample-release.aab'
)
end
@@ -56,7 +56,7 @@ platform :android do
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: 'beta',
aab: 'sample/build/outputs/bundle/release/sample-release.aab'
aab: 'app/build/outputs/bundle/release/sample-release.aab'
)
end
@@ -65,7 +65,7 @@ platform :android do
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: 'internal',
aab: 'sample/build/outputs/bundle/release/sample-release.aab'
aab: 'app/build/outputs/bundle/release/sample-release.aab'
)
end