Additional debug output for diagnosing feature incompatibility
This commit is contained in:
parent
0ee34076af
commit
a6ee656afb
@ -251,7 +251,10 @@ public class DB {
|
|||||||
return false;
|
return false;
|
||||||
if (apk.features != null) {
|
if (apk.features != null) {
|
||||||
for (String feat : apk.features) {
|
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;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user