diff --git a/mobile/android/base/GeckoApp.java b/mobile/android/base/GeckoApp.java index 0937fa7f3df..c8bb6707d90 100644 --- a/mobile/android/base/GeckoApp.java +++ b/mobile/android/base/GeckoApp.java @@ -222,6 +222,9 @@ abstract public class GeckoApp public ArrayList mPackageInfoCache = new ArrayList(); String[] getPluginDirectories() { + // we don't support Honeycomb and later + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) + return new String[0]; Log.w(LOGTAG, "zerdatime " + new Date().getTime() + " - start of getPluginDirectories");