Show apps in name order.

Prior to this, they were in whatever order they came from the metadata.
This resulted in weidrness because the repo which was updated last will
have its apps shown last. We are trying to move away from the repo
update order being important.

In the future, this sort order should take into account better
heuristics, but for now this is at least deterministic.
This commit is contained in:
Peter Serwylo 2017-04-05 13:26:56 +10:00
parent b5341efff9
commit 0b7dc64fb6
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ public class AppListActivity extends AppCompatActivity implements LoaderManager.
Schema.AppMetadataTable.Cols.ALL,
null,
null,
null
Schema.AppMetadataTable.Cols.NAME
);
}

View File

@ -153,7 +153,7 @@ public class CategoryController extends RecyclerView.ViewHolder implements Loade
},
null,
null,
null
Schema.AppMetadataTable.Cols.NAME
);
}
}