Using build 2940, attempting to rebuild an older (long-working, long-published) Android project, receive the following in the logcat, happens about 4 times total upon each launch (each instance is similar, just one included below) Any idea what causes this?
App does appear to launch fine, apparently just ignoring the exception, but this is truly a lot of concerning “noise” during startup, looking for some image that I’ve never heard of, and have no idea what it is/does.
Any docs on “_corona_splash_screen.png”? Is it one of the launch images we can supply, just renamed? Or something entirely different?
I can confirm that the res/drawable folder of the apk does not contain _corona_splash_screen.png, but then to my memory (about three years history rebuilding this project) it has never been there.
I did test that it’s not just this app – also rebuilt a more recent (also working, also published) project, and it too now emits same exceptions on launch.
W/ImageView(19010): Unable to find resource: 2130837504 W/ImageView(19010): android.content.res.Resources$NotFoundException: File res/drawable/\_corona\_splash\_screen.png from drawable resource ID #0x7f020000 W/ImageView(19010): at android.content.res.Resources.loadDrawableForCookie(Resources.java:2428) W/ImageView(19010): at android.content.res.Resources.loadDrawable(Resources.java:2330) W/ImageView(19010): at android.content.res.Resources.getDrawable(Resources.java:758) W/ImageView(19010): at android.content.Context.getDrawable(Context.java:402) W/ImageView(19010): at android.widget.ImageView.resolveUri(ImageView.java:741) W/ImageView(19010): at android.widget.ImageView.onMeasure(ImageView.java:867) W/ImageView(19010): at android.view.View.measure(View.java:17430) W/ImageView(19010): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5463) W/ImageView(19010): at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1436) W/ImageView(19010): at android.widget.LinearLayout.measureVertical(LinearLayout.java:722) W/ImageView(19010): at android.widget.LinearLayout.onMeasure(LinearLayout.java:613) W/ImageView(19010): at android.view.View.measure(View.java:17430) W/ImageView(19010): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5463) W/ImageView(19010): at android.widget.FrameLayout.onMeasure(FrameLayout.java:430) W/ImageView(19010): at android.view.View.measure(View.java:17430) W/ImageView(19010): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5463) W/ImageView(19010): at android.widget.FrameLayout.onMeasure(FrameLayout.java:430) W/ImageView(19010): at android.view.View.measure(View.java:17430) W/ImageView(19010): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5463) W/ImageView(19010): at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1436) W/ImageView(19010): at android.widget.LinearLayout.measureVertical(LinearLayout.java:722) W/ImageView(19010): at android.widget.LinearLayout.onMeasure(LinearLayout.java:613) W/ImageView(19010): at android.view.View.measure(View.java:17430) W/ImageView(19010): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5463) W/ImageView(19010): at android.widget.FrameLayout.onMeasure(FrameLayout.java:430) W/ImageView(19010): at com.android.internal.policy.impl.PhoneWindow$DecorView.onMeasure(PhoneWindow.java:2560) W/ImageView(19010): at android.view.View.measure(View.java:17430) W/ImageView(19010): at android.view.ViewRootImpl.performMeasure(ViewRootImpl.java:2001) W/ImageView(19010): at android.view.ViewRootImpl.measureHierarchy(ViewRootImpl.java:1166) W/ImageView(19010): at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1372) W/ImageView(19010): at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1054) W/ImageView(19010): at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:5779) W/ImageView(19010): at android.view.Choreographer$CallbackRecord.run(Choreographer.java:767) W/ImageView(19010): at android.view.Choreographer.doCallbacks(Choreographer.java:580) W/ImageView(19010): at android.view.Choreographer.doFrame(Choreographer.java:550) W/ImageView(19010): at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:753) W/ImageView(19010): at android.os.Handler.handleCallback(Handler.java:739) W/ImageView(19010): at android.os.Handler.dispatchMessage(Handler.java:95) W/ImageView(19010): at android.os.Looper.loop(Looper.java:135) W/ImageView(19010): at android.app.ActivityThread.main(ActivityThread.java:5221) W/ImageView(19010): at java.lang.reflect.Method.invoke(Native Method) W/ImageView(19010): at java.lang.reflect.Method.invoke(Method.java:372) W/ImageView(19010): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899) W/ImageView(19010): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694) W/ImageView(19010): Caused by: java.io.FileNotFoundException: res/drawable/\_corona\_splash\_screen.png W/ImageView(19010): at android.content.res.AssetManager.openNonAssetNative(Native Method) W/ImageView(19010): at android.content.res.AssetManager.openNonAsset(AssetManager.java:405) W/ImageView(19010): at android.content.res.Resources.loadDrawableForCookie(Resources.java:2421) W/ImageView(19010): ... 43 more