-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Impossible to find the version code with the specified properties #16
Comments
Your gradle_file_path is probably wrong. If you're running fastlane in the root of the project folder, it's probably |
I am also getting this error. Here is how my versionCode is defined in
Here is how I am calling it
|
Same |
I have two flavours, in each flavor has its own versionCode, how to define ext_constant_name to increment correct flavor versionCode? "app/build.gradle" file
} |
+1 for @MaoTouWang's question I'm also wondering how can I increment the version code per flavor. |
EDIT:
and after i removed that comment, it works. I hope that helps someone in the future =) I have the same issue. In this case, it was all working, but the problem in this case seems to be coming from me adding more "tracks" that Fastlane is looking at when determining the latest/highest versionCode on Google Play. So, it was (and this is working):
but I needed the "Open testing" track too, so when I checked Fastlane docs, it says that the available "tracks" are "The default available tracks are: production, beta, alpha, internal" (see here), so I changed that code to below, and then it fails with the error as above:
The error log (from CircleCI where I build) is looking strange though. Look at this line below: So, whats going on here?
|
in It's work! And this is my lane in Fastfile
|
Fastlane is great - when it works. There is always something gets broken, this time "Impossible to find the version code with the specified properties". Any idea why?
The text was updated successfully, but these errors were encountered: