The avgtool associated with increment_build_number plugin in Fastlane returning error.
When I'm running increment_build_number
in Fastlane, I'm getting
Updating CFBundleVersion in Info.plist(s)... $(SRCROOT)/Info.plist Cannot find "$(SRCROOT)/Info.plist"
The reason for the issue is that the avgtool couldn't identify the $(SRCROOT)
One of the solution found is to update the path to the Info.plist in Xcode settings to absolute path.
As there are a number of developers working on this project, updating the project settings with absolute path (to the plist) will affect others to build the project.
Is there any other way I can get this issue fixed?