mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-27 13:16:14 +00:00
17 lines
449 B
Python
17 lines
449 B
Python
|
#!/usr/bin/python
|
||
|
import time
|
||
|
|
||
|
|
||
|
from xml.dom.minidom import parse
|
||
|
dom1 = parse("AndroidManifest.xml")
|
||
|
oldVersion = dom1.documentElement.getAttribute("android:versionCode")
|
||
|
versionNumbers = oldVersion.split('.')
|
||
|
|
||
|
versionNumbers[-1] = unicode(int(time.time()))
|
||
|
dom1.documentElement.setAttribute("android:versionCode", u'.'.join(versionNumbers))
|
||
|
|
||
|
with open("AndroidManifest.xml", 'wb') as f:
|
||
|
for line in dom1.toxml("utf-8"):
|
||
|
f.write(line)
|
||
|
|