diff --git a/src/Android/increment-version.ps1 b/src/Android/increment-version.ps1 index cf49b5180..38ab87df6 100644 --- a/src/Android/increment-version.ps1 +++ b/src/Android/increment-version.ps1 @@ -2,7 +2,7 @@ $newVersionCode = $args[1]; $xml=New-Object XML; -$xml.Load($rootPath + "src\Android\Properties\AndroidManifest.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"); \ No newline at end of file +$xml.Save($rootPath + "\src\Android\Properties\AndroidManifest.xml"); \ No newline at end of file