- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我通过简单的登录创建了一个带有 phone gap 的项目,并且在移动设备上使用 phonegap 开发者应用程序运行良好。
当我尝试使用命令构建 android 应用程序时
cordova build android
我收到以下错误
Error: Source path does not exist: www/res/screen/android/drawable-land-xxhdpi-screen.png
当我检查错误消息中提到的路径时,文件不存在。取而代之的是 drawable-land-xhdpi-screen.png。所以我只是复制了文件并将其重命名为 drawable-land-xxhdpi-screen.png 然后我尝试使用命令再次构建
cordova build android
我又遇到了同样的错误。而当我再次检查路径时,我添加的文件似乎已经不存在了。
请帮我解决这个问题并构建应用。
屏幕截图
config.xml是
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.g10solution.okornot" version="1.0.0">
<name>G10 OK or NOT App</name>
<description>Hello World sample application that responds to the deviceready event.</description>
<author href="http://phonegap.com" email="support@phonegap.com">PhoneGap Team</author>
<content src="index.html"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="android-minSdkVersion" value="14"/>
<plugin name="cordova-plugin-battery-status" source="npm" spec="~1.1.1"/>
<plugin name="cordova-plugin-camera" source="npm" spec="~2.1.1"/>
<plugin name="cordova-plugin-media-capture" source="npm" spec="~1.2.0"/>
<plugin name="cordova-plugin-console" source="npm" spec="~1.0.2"/>
<plugin name="cordova-plugin-contacts" source="npm" spec="~2.0.1"/>
<plugin name="cordova-plugin-device" source="npm" spec="~1.1.1"/>
<plugin name="cordova-plugin-device-motion" source="npm" spec="~1.2.0"/>
<plugin name="cordova-plugin-device-orientation" source="npm" spec="~1.0.2"/>
<plugin name="cordova-plugin-dialogs" source="npm" spec="~1.2.0"/>
<plugin name="cordova-plugin-file" source="npm" spec="~4.1.1"/>
<plugin name="cordova-plugin-file-transfer" source="npm" spec="~1.5.0"/>
<plugin name="cordova-plugin-geolocation" source="npm" spec="~2.1.0"/>
<plugin name="cordova-plugin-globalization" source="npm" spec="~1.0.3"/>
<plugin name="cordova-plugin-inappbrowser" source="npm" spec="~1.3.0"/>
<plugin name="cordova-plugin-media" source="npm" spec="~2.2.0"/>
<plugin name="cordova-plugin-network-information" source="npm" spec="~1.2.0"/>
<plugin name="cordova-plugin-splashscreen" source="npm" spec="~3.2.1"/>
<plugin name="cordova-plugin-statusbar" source="npm" spec="~2.1.2"/>
<plugin name="cordova-plugin-vibration" source="npm" spec="~2.1.0"/>
<plugin name="cordova-plugin-whitelist" source="npm" spec="~1.2.1"/>
<icon src="icon.png"/>
<platform name="android">
<icon src="www/res/icon/android/drawable-ldpi-icon.png" density="ldpi"/>
<icon src="www/res/icon/android/drawable-mdpi-icon.png" density="mdpi"/>
<icon src="www/res/icon/android/drawable-hdpi-icon.png" density="hdpi"/>
<icon src="www/res/icon/android/drawable-xhdpi-icon.png" density="xhdpi"/>
<icon src="www/res/icon/android/drawable-xxhdpi-icon.png" density="xxhdpi"/>
<icon src="www/res/icon/android/drawable-xxxhdpi-icon.png" density="xxxhdpi"/>
<splash src="www/res/screen/android/drawable-land-ldpi-screen.png" density="land-ldpi"/>
<splash src="www/res/screen/android/drawable-land-mdpi-screen.png" density="land-mdpi"/>
<splash src="www/res/screen/android/drawable-land-hdpi-screen.png" density="land-hdpi"/>
<splash src="www/res/screen/android/drawable-land-xhdpi-screen.png" density="land-xhdpi"/>
<splash src="www/res/screen/android/drawable-land-xxhdpi-screen.png" density="land-xxhdpi"/>
<splash src="www/res/screen/android/drawable-land-xxxhdpi-screen.png" density="land-xxxhdpi"/>
<splash src="www/res/screen/android/drawable-port-ldpi-screen.png" density="port-ldpi"/>
<splash src="www/res/screen/android/drawable-port-mdpi-screen.png" density="port-mdpi"/>
<splash src="www/res/screen/android/drawable-port-hdpi-screen.png" density="port-hdpi"/>
<splash src="www/res/screen/android/drawable-port-xhdpi-screen.png" density="port-xhdpi"/>
<splash src="www/res/screen/android/drawable-port-xxhdpi-screen.png" density="port-xxhdpi"/>
<splash src="www/res/screen/android/drawable-port-xxxhdpi-screen.png" density="port-xxxhdpi"/>
</platform>
<platform name="ios">
<icon src="www/res/icon/ios/icon.png" platform="ios" width="57" height="57"/>
<icon src="www/res/icon/ios/icon@2x.png" platform="ios" width="114" height="114"/>
<icon src="www/res/icon/ios/icon-40.png" platform="ios" width="40" height="40"/>
<icon src="www/res/icon/ios/icon-40@2x.png" platform="ios" width="80" height="80"/>
<icon src="www/res/icon/ios/icon-50.png" platform="ios" width="50" height="50"/>
<icon src="www/res/icon/ios/icon-50@2x.png" platform="ios" width="100" height="100"/>
<icon src="www/res/icon/ios/icon-60.png" platform="ios" width="60" height="60"/>
<icon src="www/res/icon/ios/icon-60@2x.png" platform="ios" width="120" height="120"/>
<icon src="www/res/icon/ios/icon-60@3x.png" platform="ios" width="180" height="180"/>
<icon src="www/res/icon/ios/icon-72.png" platform="ios" width="72" height="72"/>
<icon src="www/res/icon/ios/icon-72@2x.png" platform="ios" width="144" height="144"/>
<icon src="www/res/icon/ios/icon-76.png" platform="ios" width="76" height="76"/>
<icon src="www/res/icon/ios/icon-76@2x.png" platform="ios" width="152" height="152"/>
<icon src="www/res/icon/ios/icon-small.png" platform="ios" width="29" height="29"/>
<icon src="www/res/icon/ios/icon-small@2x.png" platform="ios" width="58" height="58"/>
<icon src="www/res/icon/ios/icon-small@3x.png" platform="ios" width="87" height="87"/>
<splash src="www/res/screen/ios/Default-568h@2x~iphone.png" platform="ios" width="640" height="1136"/>
<splash src="www/res/screen/ios/Default-667h.png" platform="ios" width="750" height="1334"/>
<splash src="www/res/screen/ios/Default-736h.png" platform="ios" width="1242" height="2208"/>
<splash src="www/res/screen/ios/Default-Landscape-736h.png" platform="ios" width="2208" height="1242"/>
<splash src="www/res/screen/ios/Default-Landscape@2x~ipad.png" platform="ios" width="2048" height="1536"/>
<splash src="www/res/screen/ios/Default-Landscape~ipad.png" platform="ios" width="1024" height="768"/>
<splash src="www/res/screen/ios/Default-Portrait@2x~ipad.png" platform="ios" width="1536" height="2048"/>
<splash src="www/res/screen/ios/Default-Portrait~ipad.png" platform="ios" width="768" height="1024"/>
<splash src="www/res/screen/ios/Default@2x~iphone.png" platform="ios" width="640" height="960"/>
<splash src="www/res/screen/ios/Default~iphone.png" platform="ios" width="320" height="480"/>
</platform>
<platform name="wp8">
<icon src="www/res/icon/wp8/ApplicationIcon.png" platform="wp8" width="99" height="99"/>
<icon src="www/res/icon/wp8/Background.png" platform="wp8" width="159" height="159"/>
<splash src="www/res/screen/wp8/screen-portrait.jpg" platform="wp8" width="768" height="1280"/>
</platform>
<platform name="windows">
<icon src="www/res/icon/windows/Square150x150Logo.scale-100.png" platform="windows" width="150" height="150"/>
<icon src="www/res/icon/windows/Square30x30Logo.scale-100.png" platform="windows" width="30" height="30"/>
<icon src="www/res/icon/windows/StoreLogo.scale-100.png" platform="windows" width="50" height="50"/>
<splash src="www/res/screen/windows/SplashScreen.scale-100.png" platform="windows" width="620" height="300"/>
<icon src="www/res/icon/windows/StoreLogo.scale-240.png" platform="windows" width="120" height="120"/>
<icon src="www/res/icon/windows/Square44x44Logo.scale-100.png" platform="windows" width="44" height="44"/>
<icon src="www/res/icon/windows/Square44x44Logo.scale-240.png" platform="windows" width="106" height="106"/>
<icon src="www/res/icon/windows/Square70x70Logo.scale-100.png" platform="windows" width="70" height="70"/>
<icon src="www/res/icon/windows/Square71x71Logo.scale-100.png" platform="windows" width="71" height="71"/>
<icon src="www/res/icon/windows/Square71x71Logo.scale-240.png" platform="windows" width="170" height="170"/>
<icon src="www/res/icon/windows/Square150x150Logo.scale-240.png" platform="windows" width="360" height="360"/>
<icon src="www/res/icon/windows/Square310x310Logo.scale-100.png" platform="windows" width="310" height="310"/>
<icon src="www/res/icon/windows/Wide310x150Logo.scale-100.png" platform="windows" width="310" height="150"/>
<icon src="www/res/icon/windows/Wide310x150Logo.scale-240.png" platform="windows" width="744" height="360"/>
<splash src="www/res/screen/windows/SplashScreenPhone.scale-240.png" platform="windows" width="1152" height="1920"/>
</platform>
<access origin="*"/>
<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>
最佳答案
我刚刚遇到了这个问题,并且能够通过做两件事来解决这个问题:
1. 从你的 config.xml 中删除所有这些
<icon src="icon.png"/>
<platform name="android">
<icon src="www/res/icon/android/drawable-ldpi-icon.png" density="ldpi"/>
<icon src="www/res/icon/android/drawable-mdpi-icon.png" density="mdpi"/>
<icon src="www/res/icon/android/drawable-hdpi-icon.png" density="hdpi"/>
<icon src="www/res/icon/android/drawable-xhdpi-icon.png" density="xhdpi"/>
<icon src="www/res/icon/android/drawable-xxhdpi-icon.png" density="xxhdpi"/>
<icon src="www/res/icon/android/drawable-xxxhdpi-icon.png" density="xxxhdpi"/>
<splash src="www/res/screen/android/drawable-land-ldpi-screen.png" density="land-ldpi"/>
<splash src="www/res/screen/android/drawable-land-mdpi-screen.png" density="land-mdpi"/>
<splash src="www/res/screen/android/drawable-land-hdpi-screen.png" density="land-hdpi"/>
<splash src="www/res/screen/android/drawable-land-xhdpi-screen.png" density="land-xhdpi"/>
<splash src="www/res/screen/android/drawable-land-xxhdpi-screen.png" density="land-xxhdpi"/>
<splash src="www/res/screen/android/drawable-land-xxxhdpi-screen.png" density="land-xxxhdpi"/>
<splash src="www/res/screen/android/drawable-port-ldpi-screen.png" density="port-ldpi"/>
<splash src="www/res/screen/android/drawable-port-mdpi-screen.png" density="port-mdpi"/>
<splash src="www/res/screen/android/drawable-port-hdpi-screen.png" density="port-hdpi"/>
<splash src="www/res/screen/android/drawable-port-xhdpi-screen.png" density="port-xhdpi"/>
<splash src="www/res/screen/android/drawable-port-xxhdpi-screen.png" density="port-xxhdpi"/>
<splash src="www/res/screen/android/drawable-port-xxxhdpi-screen.png" density="port-xxxhdpi"/>
</platform>
<platform name="ios">
<icon src="www/res/icon/ios/icon.png" platform="ios" width="57" height="57"/>
<icon src="www/res/icon/ios/icon@2x.png" platform="ios" width="114" height="114"/>
<icon src="www/res/icon/ios/icon-40.png" platform="ios" width="40" height="40"/>
<icon src="www/res/icon/ios/icon-40@2x.png" platform="ios" width="80" height="80"/>
<icon src="www/res/icon/ios/icon-50.png" platform="ios" width="50" height="50"/>
<icon src="www/res/icon/ios/icon-50@2x.png" platform="ios" width="100" height="100"/>
<icon src="www/res/icon/ios/icon-60.png" platform="ios" width="60" height="60"/>
<icon src="www/res/icon/ios/icon-60@2x.png" platform="ios" width="120" height="120"/>
<icon src="www/res/icon/ios/icon-60@3x.png" platform="ios" width="180" height="180"/>
<icon src="www/res/icon/ios/icon-72.png" platform="ios" width="72" height="72"/>
<icon src="www/res/icon/ios/icon-72@2x.png" platform="ios" width="144" height="144"/>
<icon src="www/res/icon/ios/icon-76.png" platform="ios" width="76" height="76"/>
<icon src="www/res/icon/ios/icon-76@2x.png" platform="ios" width="152" height="152"/>
<icon src="www/res/icon/ios/icon-small.png" platform="ios" width="29" height="29"/>
<icon src="www/res/icon/ios/icon-small@2x.png" platform="ios" width="58" height="58"/>
<icon src="www/res/icon/ios/icon-small@3x.png" platform="ios" width="87" height="87"/>
<splash src="www/res/screen/ios/Default-568h@2x~iphone.png" platform="ios" width="640" height="1136"/>
<splash src="www/res/screen/ios/Default-667h.png" platform="ios" width="750" height="1334"/>
<splash src="www/res/screen/ios/Default-736h.png" platform="ios" width="1242" height="2208"/>
<splash src="www/res/screen/ios/Default-Landscape-736h.png" platform="ios" width="2208" height="1242"/>
<splash src="www/res/screen/ios/Default-Landscape@2x~ipad.png" platform="ios" width="2048" height="1536"/>
<splash src="www/res/screen/ios/Default-Landscape~ipad.png" platform="ios" width="1024" height="768"/>
<splash src="www/res/screen/ios/Default-Portrait@2x~ipad.png" platform="ios" width="1536" height="2048"/>
<splash src="www/res/screen/ios/Default-Portrait~ipad.png" platform="ios" width="768" height="1024"/>
<splash src="www/res/screen/ios/Default@2x~iphone.png" platform="ios" width="640" height="960"/>
<splash src="www/res/screen/ios/Default~iphone.png" platform="ios" width="320" height="480"/>
</platform>
<platform name="wp8">
<icon src="www/res/icon/wp8/ApplicationIcon.png" platform="wp8" width="99" height="99"/>
<icon src="www/res/icon/wp8/Background.png" platform="wp8" width="159" height="159"/>
<splash src="www/res/screen/wp8/screen-portrait.jpg" platform="wp8" width="768" height="1280"/>
</platform>
<platform name="windows">
<icon src="www/res/icon/windows/Square150x150Logo.scale-100.png" platform="windows" width="150" height="150"/>
<icon src="www/res/icon/windows/Square30x30Logo.scale-100.png" platform="windows" width="30" height="30"/>
<icon src="www/res/icon/windows/StoreLogo.scale-100.png" platform="windows" width="50" height="50"/>
<splash src="www/res/screen/windows/SplashScreen.scale-100.png" platform="windows" width="620" height="300"/>
<icon src="www/res/icon/windows/StoreLogo.scale-240.png" platform="windows" width="120" height="120"/>
<icon src="www/res/icon/windows/Square44x44Logo.scale-100.png" platform="windows" width="44" height="44"/>
<icon src="www/res/icon/windows/Square44x44Logo.scale-240.png" platform="windows" width="106" height="106"/>
<icon src="www/res/icon/windows/Square70x70Logo.scale-100.png" platform="windows" width="70" height="70"/>
<icon src="www/res/icon/windows/Square71x71Logo.scale-100.png" platform="windows" width="71" height="71"/>
<icon src="www/res/icon/windows/Square71x71Logo.scale-240.png" platform="windows" width="170" height="170"/>
<icon src="www/res/icon/windows/Square150x150Logo.scale-240.png" platform="windows" width="360" height="360"/>
<icon src="www/res/icon/windows/Square310x310Logo.scale-100.png" platform="windows" width="310" height="310"/>
<icon src="www/res/icon/windows/Wide310x150Logo.scale-100.png" platform="windows" width="310" height="150"/>
<icon src="www/res/icon/windows/Wide310x150Logo.scale-240.png" platform="windows" width="744" height="360"/>
<splash src="www/res/screen/windows/SplashScreenPhone.scale-240.png" platform="windows" width="1152" height="1920"/>
</platform>
(因此不再引用 config.xml 中的图像,而是使用cordova-icon ,这让生活变得更加轻松)
$ android
))关于android - 使用 Cordova 构建 Android 应用程序时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39051045/
我最近在/ drawable中添加了一些.gifs,以便可以将它们与按钮一起使用。这个工作正常(没有错误)。现在,当我重建/运行我的应用程序时,出现以下错误: Error: Gradle: Execu
Android 中有返回内部存储数据路径的方法吗? 我有 2 部 Android 智能手机(Samsung s2 和 s7 edge),我在其中安装了一个应用程序。我想使用位于这条路径中的 sqlit
这个问题在这里已经有了答案: What's the difference between "?android:" and "@android:" in an android layout xml f
我只想知道 android 开发手机、android 普通手机和 android root 手机之间的实际区别。 我们不能从实体店或除 android marketplace 以外的其他地方购买开发手
自Gradle更新以来,我正在努力使这个项目达到标准。这是一个团队项目,它使用的是android-apt插件。我已经进行了必要的语法更改(编译->实现和apt->注释处理器),但是编译器仍在告诉我存在
我是android和kotlin的新手,所以请原谅要解决的一个非常简单的问题! 我已经使用导航体系结构组件创建了一个基本应用程序,使用了底部的导航栏和三个导航选项。每个导航选项都指向一个专用片段,该片
我目前正在使用 Facebook official SDK for Android . 我现在正在使用高级示例应用程序,但我不知道如何让它获取应用程序墙/流/状态而不是登录的用户。 这可能吗?在那种情
我在下载文件时遇到问题, 我可以在模拟器中下载文件,但无法在手机上使用。我已经定义了上网和写入 SD 卡的权限。 我在服务器上有一个 doc 文件,如果用户单击下载。它下载文件。这在模拟器中工作正常但
这个问题在这里已经有了答案: What is the difference between gravity and layout_gravity in Android? (22 个答案) 关闭 9
任何人都可以告诉我什么是 android 缓存和应用程序缓存,因为当我们谈论缓存清理应用程序时,它的作用是,缓存清理概念是清理应用程序缓存还是像内存管理一样主存储、RAM、缓存是不同的并且据我所知,缓
假设应用程序 Foo 和 Eggs 在同一台 Android 设备上。任一应用程序都可以获取设备上所有应用程序的列表。一个应用程序是否有可能知道另一个应用程序是否已经运行以及运行了多长时间? 最佳答案
我有点困惑,我只看到了从 android 到 pc 或者从 android 到 pc 的例子。我需要制作一个从两部手机 (android) 连接的 android 应用程序进行视频聊天。我在想,我知道
用于使用 Android 以编程方式锁定屏幕。我从 Stackoverflow 之前关于此的问题中得到了一些好主意,并且我做得很好,但是当我运行该代码时,没有异常和错误。而且,屏幕没有锁定。请在这段代
文档说: android:layout_alignParentStart If true, makes the start edge of this view match the start edge
我不知道这两个属性和高度之间的区别。 以一个TextView为例,如果我将它的layout_width设置为wrap_content,并将它的width设置为50 dip,会发生什么情况? 最佳答案
这两个属性有什么关系?如果我有 android:noHistory="true",那么有 android:finishOnTaskLaunch="true" 有什么意义吗? 最佳答案 假设您的应用中有
我是新手,正在尝试理解以下 XML 代码: 查看 developer.android.com 上的文档,它说“starStyle”是 R.attr 中的常量, public static final
在下面的代码中,为什么当我设置时单选按钮的外观会发生变化 android:layout_width="fill_parent" 和 android:width="fill_parent" 我说的是
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
假设我有一个函数 fun myFunction(name:String, email:String){},当我调用这个函数时 myFunction('Ali', 'ali@test.com ') 如何
我是一名优秀的程序员,十分优秀!