- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 PhoneGapBuild 网站将我的 AngularJS 移动网站包装为 PhoneGap/Cordova 混合应用程序。我能够成功上传、构建和安装 IOS 和 Android,但是,当在任一设备上运行该应用程序时,我只会看到空白屏幕。
其他信息:
如果“window.cordova”存在而它不存在,我已使用调试器“weinre”来console.log。然而,像“window.angular”和“window._”这样的东西确实存在,因为我是从外部 CDN 加载它们的。看起来好像我的本地引用的 Assets 都没有加载(通过其中的 console.logs 确认)。我尝试过引用“/cordova.js”、“www/cordova.js”、“/www/cordova.js”均无济于事。
是否有我缺少的权限或 XML 配置或其他完全不同的东西?
需要明确的是,我在我的index.html 文件中引用了cordova:
<script src="cordova.js"></script>
这是我的配置文件:
<?xml version="1.0" encoding="utf-8"?>
<widget id="com.tristatetennis.app" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<name>TriStateTennis</name>
<description>Tennis</description>
<content src="index.html" />
<icon src="icon.png" />
<access origin="*" />
<preference name="permissions" value="none" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="14" />
<preference name="android-installLocation" value="auto" />
<plugin name="cordova-plugin-battery-status" />
<plugin name="cordova-plugin-camera" />
<plugin name="cordova-plugin-media-capture" />
<plugin name="cordova-plugin-console" />
<plugin name="cordova-plugin-contacts" />
<plugin name="cordova-plugin-device" />
<plugin name="cordova-plugin-device-motion" />
<plugin name="cordova-plugin-device-orientation" />
<plugin name="cordova-plugin-dialogs" />
<plugin name="cordova-plugin-file" />
<plugin name="cordova-plugin-file-transfer" />
<plugin name="cordova-plugin-geolocation" />
<plugin name="cordova-plugin-globalization" />
<plugin name="cordova-plugin-inappbrowser" />
<plugin name="cordova-plugin-media" />
<plugin name="cordova-plugin-network-information" />
<plugin name="cordova-plugin-splashscreen" />
<plugin name="cordova-plugin-vibration" />
<!-- <plugin name="cordova-plugin-whitelist" version="1" /> -->
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>
谢谢
最佳答案
好消息是您的 config.xml
看起来相当不错,比大多数都好。
可以肯定的是,我们正在谈论 PGB (PhoneGap Build) ,Phonegap/Adobe 提供的基于云的构建服务。
您的大多数问题都源于陷入
#5 在设计应用程序时,认为phonegap就像网站或网络浏览器一样工作。的Top Mistakes by Developers new to Cordova/Phonegap
确保您阅读了所有粗体句子,因为您可能需要一遍又一遍地阅读此内容。
在我之前谈到的部分中,您的应用程序不能成为您网站的包装器,这是您需要了解的内容:
Quote Apple iTunes Guidelines - 2.12
Apps that are not very useful, unique, are simply web sites bundled as Apps, or do not provide any lasting entertainment value may be rejected
对于Phonegap Build,它的主要资源(index.html
、config.xml
)必须位于根目录中。这意味着两个文件*必须*位于同一目录中。这也意味着子目录可以包含其他与 Web 相关的资源,例如 javascript、css 和更多网页。
此错误来自于偶然发现 #1的Top Mistakes by Developers new to Cordova/Phonegap 。如果您使用的是 Cordova/Phonegap CLI,则 config.xml
位于 index.html
和 index.html< 下一个目录
位于 www/
。
当config.xml
中不使用phonegap-version
时,您将获得最新版本,目前为cli-5.2.0
。这有很多含义。
您不能要求低于编译器支持的 android-minSdkVersion。文档说 7 可以,但这是一个错误。支持的最低 Android API 是 14 ( Ice Cream Sandwich )。
此要求极难实现,因为您必须阅读 *Cordova* 文档。 Android Platform Guide -> 要求和支持。如果您想支持 7,那么您将需要使用Phonegap CLI。
如果您使用的是 Android 6.0,PGB 尚不支持此功能。如果您使用的是 iOS9,Cordova 最近刚刚被released 2015 年 12 月 8 日(hot fixes 2015 年 12 月 18 日),PGB 尚不支持此功能。 这是因为 PGB 仍然使用 Cordova 编译器来完成其工作。
您可以使用cordova.js
或phonegap.js
。没关系,两个都支持。详情参见:Documentaion -> 简介 -> Getting Started with Build -> Sections -> 确保您仍然可以访问 PhoneGap API
确保您使用包含所有插件的版本。
Documentaion ->配置-> Plugins -> Including a plugin in your project
If you omit the spec (version) tag, your app will always be built with the latest version of the plugin. It will be updated automatically the next time you update your app code after a plugin is updated, which may cause unexpected behaviour.
此外,这里还有一些帮助链接和常见问题解答:
关于cordova - PhoneGapBuild - 本地资源未加载到 web View 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34537116/
我想要显示正在加载的 .gif,直到所有内容都已加载,包括嵌入的 iframe。但是,目前加载 gif 会在除 iframe 之外的所有内容都已加载后消失。我怎样才能让它等到 iframe 也加载完毕
首先,这是我第一次接触 Angular。 我想要实现的是,我有一个通知列表,我必须以某种方式限制 limitTo,因此元素被限制为三个,在我单击按钮后,其余的应该加载。 我不明白该怎么做: 设置“ V
我正在尝试在我的设备上运行这个非常简单的应用程序(使用 map API V2),并且出于某种原因尝试使用 MapView 时: 使用 java 文件: public class MainMap e
我正在使用 Python 2.6、Excel 2007 Professional 和最新版本的 PyXLL。在 PyXLL 中加载具有 import scipy 抛出异常,模块未加载。有没有人能够在
我想做这个: 创建并打包原始游戏。然后我想根据原始游戏中的蓝图创建具有新网格/声音/动画和蓝图的其他 PAK 文件。原始游戏不应该知道有关其他网格/动画/等的任何信息。因此,我需要在原始游戏中使用 A
**摘要:**在java项目中经常会使用到配置文件,这里就介绍几种加载配置文件的方法。 本文分享自华为云社区《【Java】读取/加载 properties配置文件的几种方法》,作者:Copy工程师。
在 Groovy 脚本中是否可以执行条件导入语句? if (test){ import this.package.class } else { import that.package.
我正在使用 NVidia 视觉分析器(来自 CUDA 5.0 beta 版本的基于 eclipse 的版本)和 Fermi 板,我不了解其中两个性能指标: 全局加载/存储效率表示实际内存事务数与请求事
有没有办法在通过 routeProvider 加载特定 View 时清除 Angular JS 存储的历史记录? ? 我正在使用 Angular 创建一个公共(public)安装,并且历史会积累很多,
使用 Xcode 4.2,在我的应用程序中, View 加载由 segue 事件触发。 在 View Controller 中首先调用什么方法? -(void) viewWillAppear:(BOO
我在某些Django模型中使用JSONField,并希望将此数据从Oracle迁移到Postgres。 到目前为止,当使用Django的dumpdata和loaddata命令时,我仍然没有运气来保持J
创建 Nib 时,我需要创建两种类型:WindowNib 或 ViewNib。我看到的区别是,窗口 Nib 有一个窗口和一个 View 。 如何将 View Nib 加载到另一个窗口中?我是否必须创建
我想将多个env.variables转换为静态结构。 我可以手动进行: Env { is_development: env::var("IS_DEVELOPMENT")
正如我从一个测试用例中看到的:https://godbolt.org/z/K477q1 生成的程序集加载/存储原子松弛与普通变量相同:ldr 和 str 那么,宽松的原子变量和普通变量之间有什么区别吗
我有一个重定向到外部网站的按钮/链接,但是外部网站需要一些时间来加载。所以我想添加一个加载屏幕,以便外部页面在显示之前完全加载。我无法控制外部网站,并且外部网站具有同源策略,因此我无法在 iFrame
我正在尝试为我的应用程序开发一个Dockerfile,该文件在初始化后加载大量环境变量。不知何故,当我稍后执行以下命令时,这些变量是不可用的: docker exec -it container_na
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我刚刚遇到一个问题,我有一个带有一些不同选项的选择标签。 现在我想检查用户选择了哪些选项。 然后我想将一个新的 html 文件加载到该网站(取决于用户选中的选项)宽度 javascript,我该怎么做
我知道两种保存/加载应用程序设置的方法: 使用PersistentStore 使用文件系统(存储,因为 SDCard 是可选的) 我想知道您使用应用程序设置的做法是什么? 使用 PersistentS
我开始使用 Vulkan 时偶然发现了我的第一个问题。尝试创建调试报告回调时(验证层和调试扩展在我的英特尔 hd vulkan 驱动程序上可用,至少它是这么说的),它没有告诉我 vkCreateDeb
我是一名优秀的程序员,十分优秀!