getDefaultMediaSearchType static method
MediaSearchType
getDefaultMediaSearchType()
Implementation
static MediaSearchType getDefaultMediaSearchType() {
switch(AppConfig.instance.appInUse) {
case AppInUse.c:
return MediaSearchType.song;
case AppInUse.e:
return MediaSearchType.book;
case AppInUse.g:
return MediaSearchType.song;
case AppInUse.o:
return MediaSearchType.song;
default:
return MediaSearchType.song;
}
}