This message was deleted.
# android
s
This message was deleted.
x
You should not reuse this task type, it signs the bundle and does other things and this is not what you are trying to do. You also don't need to transform the AAB because you actually don't have control over the output: AGP handles this and this is why you have to provide the task output in
wiredWithFiles
. You should create a task that just takes an input and copy the output somewhere else. You could maybe use the built-in
Copy
task from Gradle. And you should do a
artifacts.get(SingleArtifact.BUNDLE)
to init the input of that task. Then you can control the output This means that if you want to run this task you have to call it instead of
assemble
. You should only do this on your CI, probably
s
@Xavier Ducrohet Thanks a lot, will check it again