mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
8 lines
No EOL
311 B
PowerShell
8 lines
No EOL
311 B
PowerShell
$rootPath = $args[0];
|
|
$newVersionCode = $args[1];
|
|
|
|
$xml=New-Object XML;
|
|
$xml.Load($rootPath + "\src\Android\Properties\AndroidManifest.xml");
|
|
$node=$xml.SelectNodes("/manifest");
|
|
$node.SetAttribute("android:versionCode", $newVersionCode);
|
|
$xml.Save($rootPath + "\src\Android\Properties\AndroidManifest.xml"); |