不接受 Phonegap .xap,收到错误 1034



我在 build.phonegap.com 上构建了一个应用程序,所以不是使用sdk。我上传了我的自定义配置.xml文件,因为我需要 android 的"停留在 webview"属性,这些应用程序在 android 中运行良好,但是当我尝试将其上传到 Windows Phone 商店时,我得到:

1034: AppManifest.xml 文件具有无效的条目程序集。更新它,然后重试

确保在 AppManifest.xaml 的"入口点程序集"字段中指定的程序集的名称是 XAP 中存在的实际程序集的名称。重新生成项目应该可以解决此问题。

我无法访问应用程序清单.xml,我试图在 phonegap 中重建它,但它对我来说不起作用!

我的配置.xml

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" version="1.0.0" versionCode="10"   id="com.app" xmlns:gap="http://phonegap.com/ns/1.0"> 
<!-- versionCode is optional and Android only -->
<name>Theappname</name> 
<description> The app. </description> 
<author email="email@adress.com" href="https://aurl.com"> Feel free to contact </author> 
<preference name="stay-in-webview" value="true"/> </widget>

我今天在Phonegap的帮助中心找到了解决方案。如果您也遇到此问题,请将应用的 phonegap 版本降级到 1.9.0。

相关内容

最新更新