Fastlane error: Could not infer your app's version

670 views Asked by At

I've been using Fastlane for our build in Jenkins system but recently I've encountered a problem which I'm unable to resolve that.

Tested recreating provisioning profile, restarting process, updating fastlane & match & deliver & spaceship.

I'm using Xcode 8.2 and fastlane 2.4.0

Error of fastlane for deliver

1

There are 1 answers

2
Priebe On

I get the same error "Could not infer your app's version", as a workaround you could specify the version by adding app_version to your DeliverFile.md

app_version "1.1.0"

or commandline argument to deliver

fastlane deliver download_metadata --app_version "1.1.0"

Deliverfile.md docs