From a6ee656afb5580cafcb2ec44edc763c8bf1a0ef1 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Tue, 11 Oct 2011 13:47:35 +0100 Subject: [PATCH] Additional debug output for diagnosing feature incompatibility --- src/org/fdroid/fdroid/DB.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/org/fdroid/fdroid/DB.java b/src/org/fdroid/fdroid/DB.java index a342b7404..77bffdbb8 100644 --- a/src/org/fdroid/fdroid/DB.java +++ b/src/org/fdroid/fdroid/DB.java @@ -251,7 +251,10 @@ public class DB { return false; if (apk.features != null) { for (String feat : apk.features) { - if (!features.contains(feat)) return false; + if (!features.contains(feat)) { + Log.d("FDroid","Incompatible based on lack of " + feat); + return false; + } } } return true;