Additional debug output for diagnosing feature incompatibility

This commit is contained in:
Ciaran Gultnieks 2011-10-11 13:47:35 +01:00
parent 0ee34076af
commit a6ee656afb

@ -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;