switch to com.android.application / fix tag filter - closes #1

This commit is contained in:
Negue 2015-05-16 14:02:17 +02:00
parent ed9af4e372
commit 850d3438e7
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:1.0.1'
}
}
apply plugin: 'android'
apply plugin: 'com.android.application'
apply plugin: 'aar-link-sources'
repositories {

View file

@ -298,7 +298,7 @@ public abstract class CardFragment extends Fragment implements OnTasksChanged {
this.tags.addAll(tagsIds);
List<HabitItem> tsks = new ArrayList<HabitItem>();
for(HabitItem it: this.tasks) {
if(it.isTagged(tagsIds)) {
if(it.getTags().containsAll(tagsIds)) {
tsks.add(it);
}
}