From 638fbfabdcb1c4ea81ddb0ea18c006f130a4873a Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Tue, 15 Oct 2013 12:17:31 -0400 Subject: [PATCH] Remove cordova.xml fallback from Config.java (it was removed from PluginManager for 3.0) --- framework/src/org/apache/cordova/Config.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/framework/src/org/apache/cordova/Config.java b/framework/src/org/apache/cordova/Config.java index 32958a85..1feb0a9d 100644 --- a/framework/src/org/apache/cordova/Config.java +++ b/framework/src/org/apache/cordova/Config.java @@ -70,11 +70,7 @@ public class Config { int id = action.getResources().getIdentifier("config", "xml", action.getClass().getPackage().getName()); if (id == 0) { - id = action.getResources().getIdentifier("cordova", "xml", action.getPackageName()); - LOG.i("CordovaLog", "config.xml missing, reverting to cordova.xml"); - } - if (id == 0) { - LOG.i("CordovaLog", "cordova.xml missing. Ignoring..."); + LOG.i("CordovaLog", "config.xml missing. Ignoring..."); return; }