I am using apktool using the following command
apktool decode "[APK PATH]"
For some reason, the decoded androidmanifest.xml does not contain the versionCode and versionName . I know that they are in the source file, because if I open the encoded file, I see the attribute in the middle of the ciphertext.
I need to check if the version of Code is updated automatically using gradle after implementing some code for this.
source share