Mehdi Hosseinzadeh
Mehdi Hosseinzadeh

Reputation: 1161

Fastlane error: Could not infer your app's version

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

Upvotes: 2

Views: 792

Answers (1)

Priebe
Priebe

Reputation: 4982

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

Upvotes: 4

Related Questions