2015-09-17 36 views
0

在Visual Studio 2015中开发与科尔多瓦5.1.1的应用程序,我可以调试它并释放它没有标志,当我尝试添加代码签署它我有问题。 这是标志的应用程序(修改build.json)为5.1.1代码:与科尔多瓦视觉工作室签名应用程序5.1.1

{ 
"android": { 
    "release": { 
     "keystore": "example.keystore", 
     "storePassword": "example", 
     "alias": "example", 
     "password" : "example", 
     "keystoreType": "" 
     } 
    } 
} 

,这是错误

A problem occurred evaluating root project 'android'. 
Keystore file does not exist: C:\Users\Simone\Desktop\example\example\platforms\android\..\..\example.keystore 

密钥库是在文件夹平台\ Android的,但我不不明白为什么有\ \ \ \ \我从来没有添加这个

我该如何解决这个问题?

由于

回答

4

的路径C:\用户\西蒙\桌面\示例\示例\平台\机器人.... \ example.keystore 是误导性的。

要解决此问题,只需将密钥库文件复制到项目根目录即可。

相关问题