added special case for album header
This commit is contained in:
parent
b8666b4a33
commit
32c5fcd41a
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,8 @@ class AndroidFileUtils {
|
|||
dcimPath = join(externalStorage, 'DCIM');
|
||||
downloadPath = join(externalStorage, 'Download');
|
||||
picturesPath = join(externalStorage, 'Pictures');
|
||||
appNameMap = await AndroidAppService.getAppNames();
|
||||
appNameMap = await AndroidAppService.getAppNames()
|
||||
..addAll({'KakaoTalkDownload': 'com.kakao.talk'});
|
||||
}
|
||||
|
||||
bool isCameraPath(String path) => path != null && path.startsWith(dcimPath) && (path.endsWith('Camera') || path.endsWith('100ANDRO'));
|
||||
|
|
Loading…
Reference in a new issue