2015-09-17 78 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 是誤導性的。

要解決此問題,只需將密鑰庫文件複製到項目根目錄即可。

相關問題