mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-24 06:35:46 +00:00
switch to com.android.application / fix tag filter - closes #1
This commit is contained in:
parent
ed9af4e372
commit
850d3438e7
2 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue