我正在尝试遵循 Spotify 应用程序开发教程。我已经按照它所说的每一步,但程序不断抛出以下错误消息:“metadataFailed - appNotFound”。我已经尝试了清单文件的所有内容,但似乎没有帮助......我在 Windows 7 中并使用 Spotify v.0.8.3.222.g317ab79d
有人知道吗?谢谢!
您需要在文件中添加BundleVersion
和BundleIdentifier
键manifest.json
。教程将很快更新。
此处提供更多信息:Spotify 应用程序在更新后死机?
当我将我的应用程序更新到 api 1.xx时,我遇到了类似的错误,我注意到它Dependencies
必须在你的.mainfest
{
"BundleType": "Application",
"BundleVersion": "0.1.0",
"UserInstallable": false,
"SupportedLanguages": [
"en"
],
"AppIcon": {
"36x18": "tutorial.png"
},
"AppName": {
"en": "Views Tutorial"
},
"BundleIdentifier" : "views-tutorial",
"VendorIdentifier" : "com.spotify",
"Dependencies": {
"api": "1.0.0",
"views": "1.0.0"
}
}