Source path does not exist:poweredby.png?

So I’m getting this error when trying to build with Phonegap. This particular file is in my project directory, but I’m not actually using it in the program at the moment.

There is no mention of this file in the phonegap config file, and the filename is not referenced anywhere within my code - how can I find out where this reference is so I can deleted it/fix it.

As far as I know, this has only happened since I upgraded to V8 today - but it’s been a long long time since I compiled this code to phonegap - so no idea if I broke it before and the issue would have presented in V7.x.x

I’ve just tried building the app using my old version 7.4.0.5 and it builds correctly… any ideas anyone?

Solved - it was to do with a splash screen. Removed that, and all is good. Hope this helps someone else.

AppStudio 8 has a whole new way of supplying the icons and splashscreens to PhoneGap. Now you supply a single image and AppStudio generates all the variations needed.

  • Sections with <icon lines
  • Sections with <splash lines
  • <gap:splash src=’{splashscreen}’/>
    Or, start fresh by copying this config.xml and adding any other changes you have made.
<?xml version="1.0" encoding="UTF-8"?>
<widget 
xmlns = "https://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.nsbasic.{id}"
versionCode = "{phoneGapBuildCounter}"
version = "{version}">

<name>{title}</name>
<description>{description}</description>
<preference name="phonegap-version" value="{phoneGapVersion}" />

<icon src='{icon}' />
<preference name='SplashScreenDelay' value='2000' />
<preference name='AutoHideSplashScreen' value='true' />
<plugin name='cordova-plugin-splashscreen' source='npm' />

<preference name="permissions" value="none"/>
<!-- sample preference specifications -->
<!-- <preference name="autorotate" value="false" readonly="true"/> -->
<!-- <preference name="orientation" value="default" /> -->
<!-- <preference name="fullscreen" value="true" /> -->

<!-- Platforms: Customize as needed. -->
<gap:platforms>
   <gap:platform name="android" />
   <gap:platform name="ios" />
</gap:platforms>

<plugin name="cordova-plugin-statusbar" source="npm" />
  <preference name="StatusBarOverlaysWebView" value="{phoneGapStatusBarOverlay}" />
  <preference name="StatusBarBackgroundColor" value="{phoneGapStatusBarColor}" />
  <preference name="StatusBarStyle" value="{phoneGapStatusBarStyle}" />

<plugin name="cordova-plugin-whitelist" source="npm" />
  <allow-navigation href="*" />
  <access origin="*" />
  <allow-intent href="*" />
</widget>
1 Like