Hello, I’m trying to submit my app and I need advice regarding the metadata file.
Here is the following context:
ff7acd2 (HEAD -> master, origin/master, origin/HEAD) #Fixed Gradle Wrapper
7ba0576 #Forgot fastlane 2.txt
8d965e1 (tag: v1.0.1, origin/release) #Last tagged release
I haven’t changed my build.gradle.kts since tag v1.0.1 (8d965e1).
versionCode = 2
versionName = "1.0.1"
Reading the Build Metadata Reference I’m kind of lost regarding the build commit value and the relation with UpdateCheckMode.
My metadata/*.yml must point to the last commit due to the fixes but I am not sure to understand if UpdateCheckMode: Tags will create conflicts between my latest tag (8d965e) and my latest commit not tagged (ff7acd).
Builds:
- versionName: '1.0.1'
versionCode: 2
commit: ff7acd2f6474f942df3d5c8391ac354afcac4093 #untagged but includes Gradle fix
...
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 2
Will this configuration cause any conflict?
Thanks for your help!