I've created a pipeline using codecommit->codebuild->codepipeline in order to build and test automatically my android app located on my github repository.
But at first stage after build step the pipeline returns this error:
I don't know the app location if it refers to .apk file because there is no .apk file into my repository.
Can anyone help me?

dateartifacts: files: - '*/' - rubik90artifactsclause? it might be possible that apk file is not being left in a visible path by the build process: trust me, i've been there. A quick check would be adding als -ltrexecution in thepost_buildclause so that you can see if the apk is actually in there. Hope that helps! - marianogg9