vcs.gotorevision(tag)
# Only process tags where the manifest exists...
- if os.path.exists(os.path.join(build_dir, 'AndroidManifest.xml')):
+ path = common.manifest_path(build_dir)
+ print "Trying manifest at %s" % path
+ if os.path.exists(path):
version, vercode, package = common.parse_androidmanifest(build_dir)
+ print "Manifest exists. Found version %s" % version
if package and package == app['id'] and version and vercode:
if int(vercode) > int(hcode):
hcode = str(int(vercode))