ccc2
[WM27] how to access flash drive in android 11 November 30, 2022 01:54PM |
ccc2
Re: [WM27] how to access flash drive in android 11 December 01, 2022 05:39PM |
Re: [WM27] how to access flash drive in android 11 December 02, 2022 08:18AM |
Registered: 3 years ago Posts: 104 |
//As of Android 11, fDataDir(), fExeDir(), fCacheDir, etc return // /data/user/0/com.company.appname/... //This folder is only accessible on a rooted device which is something that we don't //want for our WMS solutions. In this case we create a generic accessible app folder IF SysNbExternalStorage() >= 1 THEN IF SysStatusExternalStorage(1) = sseAvailable THEN DATA_Path = SysDirExternalStorage(1,sseAppFile) + [fSep] END END
ccc2
Re: [WM27] how to access flash drive in android 11 December 02, 2022 03:48PM |
> //As of Android 11, fDataDir(), fExeDir(), > , fCacheDir, etc return > // /data/user/0/com.company.appname/... > //This folder is only accessible on a rooted > d device which is something that we don't > //want for our WMS solutions. In this case we > e create a generic accessible app folder > IF SysNbExternalStorage() >= 1 THEN > IF SysStatusExternalStorage(1) = sseAvailable > le THEN > DATA_Path = SysDirExternalStorage(1,sseAppFile) > le) + [fSep] > END > END >>
Re: [WM27] how to access flash drive in android 11 December 04, 2022 03:41PM |
Registered: 3 years ago Posts: 104 |
Re: [WM27] how to access flash drive in android 11 February 13, 2023 03:13PM |
Registered: 5 years ago Posts: 207 |
ccc2
Re: [WM27] how to access flash drive in android 11 February 22, 2023 01:46AM |