781flyingdutchman / background_downloader

Flutter plugin for file downloads and uploads
Other
158 stars 73 forks source link

downloadBatch skip the first file #318

Closed alanlanglois closed 4 months ago

alanlanglois commented 4 months ago

Describe the bug downloadBatch seems to skip the first file sent in the process. It was working fine when I was using an older version of the app (7.12.3) but since the upgrade to the last (8.5.2 ) it doesn't work anymore. Take me some time to understand what was happening but I'm pretty sure there is an issue in the way the list is parsed.

To Reproduce Steps to reproduce the behavior:

  1. create a list of files you want to DL
    
    List<DownloadTask> filesList = [];
    filesList.add(createDownloadTask(data.audioUrl, 0, data.id.toString(), book.id.toString(),
        fileName: extractMP3FileName(book.audioUrl)));
    filesList.add(createDownloadTask(
        Const.getImageURL(data.coverUrl), 1, data.id.toString(), '${book.id.toString()}-cover',
        fileName: "${book.id.toString()}-cover}"));
    filesList.add(
      createDownloadTask(data.introUrl, 2, data.id.toString(), '${book.id.toString()}-intro',
          fileName: '${book.id.toString()}-intro'),
    );
    data.chapters.forEach((chapter) {
      filesList.add(createDownloadTask(Const.getImageURL(chapter.illustrationUrl), filesList.length, book.id.toString(),
          '${book.id}_${chapter.id}',
          fileName: '${book.id}_${chapter.id}'));
    });

DownloadTask createDownloadTask(String url, int index, String groupId, String taskId, {String? fileName}) { return DownloadTask( url: url, filename: fileName, metaData: jsonEncode(DLMetaData(index: index, name: taskId).toJson()), group: groupId, taskId: taskId, creationTime: DateTime.now()); }


2. start batch downloading:

```dart
final Batch result = await FileDownloader().downloadBatch(filesList, taskProgressCallback: (update) {
 }, taskStatusCallback: (update) {
      DLMetaData metaData = DLMetaData.fromJson(jsonDecode(update.task.metaData));
      debugPrint("taskStatusCallback ${metaData.index} -- ${metaData.name} taskStatusCallback ${DLStatusConverter.taskToDLStatus(update.status)}");
    }, batchProgressCallback: (succeeded, failed) {
}); 

When printing data I got started and complete status for each files in filesList except for the first record. I've tried to switch files (adding the first element after the cover), when doing this I don't get any status for the cover this time.

The weird thing is that I get a feedback from the package, it seems to have been enqueued the first element: I/BackgroundDownloader(11434): Enqueuing task with id 539-cover

Expected behavior It should start / complete the download of every element pass through the list in FileDownloader().downloadBatch(filesList,... because it doesn't it never go after the await and never really complete.

Logs If possible, include logs that capture the issue:

logs

I/BackgroundDownloader(11434): Enqueuing task with id 662
I/BackgroundDownloader(11434): Enqueuing task with id 662-cover
I/BackgroundDownloader(11434): Enqueuing task with id 662-intro
I/BackgroundDownloader(11434): Enqueuing task with id 662_8281
I/BackgroundDownloader(11434): Enqueuing task with id 662_8282
I/BackgroundDownloader(11434): Enqueuing task with id 662_8283
I/BackgroundDownloader(11434): Enqueuing task with id 662_8284
I/BackgroundDownloader(11434): Enqueuing task with id 662_8285
I/BackgroundDownloader(11434): Enqueuing task with id 662_8286
I/BackgroundDownloader(11434): Enqueuing task with id 662_8287
I/BackgroundDownloader(11434): Enqueuing task with id 662_8288
I/BackgroundDownloader(11434): Enqueuing task with id 662_8289
I/BackgroundDownloader(11434): Enqueuing task with id 662_8290
I/BackgroundDownloader(11434): Enqueuing task with id 662_8291
I/BackgroundDownloader(11434): Enqueuing task with id 662_8292

I/flutter (11434): taskStatusCallback 1 -- 662-cover taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 2 -- 662-intro taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 3 -- 662_8281 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 4 -- 662_8282 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 5 -- 662_8283 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 6 -- 662_8284 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 7 -- 662_8285 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 8 -- 662_8286 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 9 -- 662_8287 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 10 -- 662_8288 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 11 -- 662_8289 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 12 -- 662_8290 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 13 -- 662_8291 taskStatusCallback DLStatus.started
I/flutter (11434): taskStatusCallback 14 -- 662_8292 taskStatusCallback DLStatus.started

I/flutter (11434): taskStatusCallback 2 -- 662-intro taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 1 -- 662-cover taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 6 -- 662_8284 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 3 -- 662_8281 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 7 -- 662_8285 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 5 -- 662_8283 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 8 -- 662_8286 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 9 -- 662_8287 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 4 -- 662_8282 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 10 -- 662_8288 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 11 -- 662_8289 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 12 -- 662_8290 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 13 -- 662_8291 taskStatusCallback DLStatus.running
I/flutter (11434): taskStatusCallback 14 -- 662_8292 taskStatusCallback DLStatus.running

I/flutter (11434): taskStatusCallback 2 -- 662-intro taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 8 -- 662_8286 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 6 -- 662_8284 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 7 -- 662_8285 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 4 -- 662_8282 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 14 -- 662_8292 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 12 -- 662_8290 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 3 -- 662_8281 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 13 -- 662_8291 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 5 -- 662_8283 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 11 -- 662_8289 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 9 -- 662_8287 taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 1 -- 662-cover taskStatusCallback DLStatus.complete
I/flutter (11434): taskStatusCallback 10 -- 662_8288 taskStatusCallback DLStatus.complete

I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=8aec0207-668a-4841-a828-4f1527c6c24c, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662-intro, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=41cd2ce3-31ad-48e7-b272-857321f166c0, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8286, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=6435c533-1592-4eb8-95a7-f13e2a1c94d8, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8284, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=c16b7009-d2ad-4c92-a1b1-b6eb6979d62e, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8285, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=4c450256-6f19-4f3f-9f76-9416b906b6f3, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8282, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=e7e8604a-d8b9-4a8f-a91d-bc77a8e5c4de, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8292, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=d4aabc8b-2431-4da4-8b50-180e8b09554e, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8290, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=9d95bde7-28b4-4e19-8ccf-28e4fc340374, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8281, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=f861d65b-2af0-44f3-9dee-23a7fc02f2d8, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8291, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=d7b9356d-3b30-4a56-889e-f51429828b43, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8283, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=96c6629d-3bf3-4293-b722-f15c49a71978, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8289, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=d5a63a09-12ad-4f3f-8530-a6b891c0936e, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8287, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=2270e378-1d0f-4bf9-8a79-809feae892be, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662-cover, group=662 } ]
I/WM-WorkerWrapper(11434): Worker result SUCCESS for Work [ id=96dccb54-4950-4947-b6cc-7277f1cbd10d, tags={ com.bbflight.background_downloader.DownloadTaskWorker, BackgroundDownloader, taskId=662_8288, group=662 } ]

I have 15 files enqueue But all the other logs are just 14 each.

Code See the description

Additional context Same behaviour on iOS and Android.

781flyingdutchman commented 4 months ago

Thanks for sharing. Highly unlikely there's a list parsing issue, much more likely something with the tasks you enqueue. For one, you are reusing IDs . IDs essentially never leave the system so using "662" and a few derivatives is going to cause problems if you ever download the same book again. Next I'd examine every property of the tasks you create and see if there's an issue, eg invalid file name or url. Next I'd download the list one by one, without using the batch functionality, and observe the errors you get.

alanlanglois commented 4 months ago

Hi @781flyingdutchman

IDs essentially never leave the system so using "662" and a few derivatives is going to cause problems if you ever download the same book again

As I mentioned, I use the exact same "pattern" with the v7.12.3 and it works like a charm, with a pretty large user base. I use reset before calling FileDownloader().downloadBatch :

FileDownloader().reset(group: book.id.toString());

To give you some context the book is made of different files : several images (one by chapter + intro + cover) and a mp3 file (the audio of the story), I need all these data (and few other meta data) to be stored locally to let users play the story offline if they want to. I display a different UI when the book is stored and it worked fine until I updated the package to the last 8.5.2 if a rollback to the previous version v7.12.3 it works as expected.

Next I'd examine every property of the tasks you create and see if there's an issue, eg invalid file name or url. Next I'd download the list one by one, without using the batch functionality, and observe the errors you get.

I've tried, we actually have more than 300 books and for the 10 different booked I tested, the first item in the list is always skipped, it appears in the queue but nowhere else.

If you want I can give you the log of all the Task created including urls, you'll see every url is opening a file (no broken url), every id is unique and they all have the same groupId.

I'll dig into your code to see if something can explain this, from my pov it might come from this package version because:

781flyingdutchman commented 4 months ago

Yes that does sound strange. Can you provide the Android logcat logs?

alanlanglois commented 4 months ago

Sure, I filtred to get only the logcat of the app, let me know if you need more info :)

This book has 13 files and I count only 12 TaskWorker in the logcat. Note I got the same result on iOS (first file being skipped). My guess is that it's might be from the batch method dart and not related to the native implementation.

➜  mobileapp git:(upgrade/packages) ✗ adb -s 25211JEGR08070 logcat | grep com.quellehistoire.quellehistoire
05-24 21:16:35.437  1631  2000 I AppsFilter: interaction: PackageSetting{7ad7e95 com.quellehistoire.quellehistoire/10543} -> PackageSetting{4727cf4 com.asana.app/10469} BLOCKED
05-24 21:16:36.926  1631  2000 I AppsFilter: interaction: PackageSetting{7ad7e95 com.quellehistoire.quellehistoire/10543} -> PackageSetting{8bfff34 webfreak.si.rainradar/10336} BLOCKED
05-24 21:17:18.201  1631  5464 I ActivityManager: Force stopping com.quellehistoire.quellehistoire appid=10543 user=0: from pid 26667
05-24 21:17:18.214  1631  5464 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{f4042c5 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:18.215  1631  5464 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{f4042c5 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.092  1631  1929 I ActivityManager: Force stopping com.quellehistoire.quellehistoire appid=10543 user=-1: installPackageLI
05-24 21:17:36.103  1631  2000 I PackageManager: Update package com.quellehistoire.quellehistoire code path from /data/app/~~HjItB7iNBUgp9z9oIEbEVw==/com.quellehistoire.quellehistoire-dix4PYfk4AYFFJfsSVq_rQ== to /data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==; Retain data and using new
05-24 21:17:36.106  1631  2000 I AppsFilter: interaction: PackageSetting{fb3e7f com.example.lockwine_app/10550} -> PackageSetting{1c23026 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.106  1631  2000 I AppsFilter: interaction: PackageSetting{7a42e1e com.google.android.microdroid.empty_payload/10386} -> PackageSetting{1c23026 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.109  1631  2000 I AppsFilter: interaction: PackageSetting{fb3e7f com.example.lockwine_app/10550} -> PackageSetting{f3ce33e com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.109  1631  2000 I AppsFilter: interaction: PackageSetting{7a42e1e com.google.android.microdroid.empty_payload/10386} -> PackageSetting{f3ce33e com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.539  1631  2000 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{5d8a2e5 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.539  1631  2000 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{5d8a2e5 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:17:36.678  1631  2000 I ActivityManager: Force stopping com.quellehistoire.quellehistoire appid=10543 user=0: pkg removed
05-24 21:17:36.705  1631  2162 W PackageConfigPersister: App-specific configuration not found for packageName: com.quellehistoire.quellehistoire and userId: 0
05-24 21:17:36.980  1631  5424 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity (has extras)} with LAUNCH_SINGLE_TOP from uid 2000 (BAL_ALLOW_PERMISSION) result code=0
05-24 21:17:36.986  2334  2373 V WindowManagerShell: Transition requested (#1287): android.os.BinderProxy@8151dcc TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=23939 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity } baseActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} topActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} origActivity=null realActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} numActivities=1 lastActiveTime=185888089 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.window.IWindowContainerToken$Stub$Proxy@7da0815} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 132 - 0, 0) topActivityInfo=ActivityInfo{b8a072a com.quellehistoire.quellehistoire.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 isUserFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 1287 }
05-24 21:17:36.996  1631  1930 I ActivityManager: Start proc 26749:com.quellehistoire.quellehistoire/u0a543 for next-top-activity {com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}
05-24 21:17:37.012  1631  5484 D CoreBackPreview: Window{3132e2e u0 Splash Screen com.quellehistoire.quellehistoire}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@e00a948, mPriority=0, mIsAnimationCallback=false}
05-24 21:17:37.028  1631  1900 V WindowManager: Sent Transition (#1287) createdAt=05-24 21:17:36.966 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=23939 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity } baseActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} topActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} origActivity=null realActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} numActivities=1 lastActiveTime=185888089 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{9e41db Task{bd96ad7 #23939 type=standard A=10543:com.quellehistoire.quellehistoire}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 132 - 0, 0) topActivityInfo=ActivityInfo{5d4f478 com.quellehistoire.quellehistoire.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 isUserFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 1287 }
05-24 21:17:37.028  1631  1900 V WindowManager:         {WCT{RemoteToken{9e41db Task{bd96ad7 #23939 type=standard A=10543:com.quellehistoire.quellehistoire}}} m=OPEN f=NONE leash=Surface(name=Task=23939)/@0x98ad8bf sb=Rect(0, 0 - 1080, 2400) eb=Rect(0, 0 - 1080, 2400) d=0},
05-24 21:17:37.028  1631  1631 I Telecom : CarModeTracker: Package com.quellehistoire.quellehistoire is not tracked.: SSH.oR@WGg
05-24 21:17:37.113  1631  1631 W AlarmManager: Package com.quellehistoire.quellehistoire, uid 10543 lost permission to set exact alarms!
05-24 21:17:38.493  1631  5292 D CoreBackPreview: Window{2c4c1fc u0 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@b93cd56, mPriority=0, mIsAnimationCallback=false}
05-24 21:17:38.522  1631  3403 I MediaSessionStack: addSession to bottom of stack | record: com.quellehistoire.quellehistoire/media-session (userId=0)
05-24 21:17:40.666  1631  5511 I AppsFilter: interaction: PackageSetting{3a2cce3 com.quellehistoire.quellehistoire/10543} -> PackageSetting{30eb355 com.google.android.apps.translate/10272} BLOCKED
05-24 21:17:40.666  1631  5511 I AppsFilter: interaction: PackageSetting{3a2cce3 com.quellehistoire.quellehistoire/10543} -> PackageSetting{4af7be7 com.github.android/10370} BLOCKED
05-24 21:17:41.215  1631  4805 W PackageConfigPersister: App-specific configuration not found for packageName: com.quellehistoire.quellehistoire and userId: 0
05-24 21:17:41.482  1631  1663 D CoreBackPreview: Window{3132e2e u0 Splash Screen com.quellehistoire.quellehistoire EXITING}: Setting back callback null
05-24 21:18:12.520  1631  1900 V WindowManager:         {WCT{RemoteToken{9e41db Task{bd96ad7 #23939 type=standard A=10543:com.quellehistoire.quellehistoire}}} m=TO_FRONT f=NONE p=WCT{RemoteToken{f6cc689 DefaultTaskDisplayArea@103021009}} leash=Surface(name=Task=23939)/@0x98ad8bf sb=Rect(0, 0 - 1080, 2400) eb=Rect(0, 0 - 1080, 2400) d=0},
05-24 21:18:12.901  1631  2436 W PackageConfigPersister: App-specific configuration not found for packageName: com.quellehistoire.quellehistoire and userId: 0
05-24 21:18:13.749  1631  1900 V WindowManager:         {WCT{RemoteToken{9e41db Task{bd96ad7 #23939 type=standard A=10543:com.quellehistoire.quellehistoire}}} m=TO_BACK f=NONE leash=Surface(name=Task=23939)/@0x98ad8bf sb=Rect(0, 0 - 1080, 2400) eb=Rect(0, 0 - 1080, 2400) d=0},
05-24 21:18:14.800  1631  2433 D CoreBackPreview: Window{2c4c1fc u0 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}: Setting back callback null
05-24 21:18:14.813  1631  1904 I ActivityManager: Killing 26749:com.quellehistoire.quellehistoire/u0a543 (adj 905): remove task
05-24 21:18:15.042  1631  3756 I MediaSessionStack: removeSession | record: com.quellehistoire.quellehistoire/media-session (userId=0)
05-24 21:18:24.108  1631  2433 I ActivityManager: Force stopping com.quellehistoire.quellehistoire appid=10543 user=0: from pid 27484
05-24 21:18:24.123  1631  2433 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{8d1728b com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:18:24.123  1631  2433 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{8d1728b com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:18:24.470  1631  5484 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity (has extras)} with LAUNCH_SINGLE_TOP from uid 2000 (BAL_ALLOW_PERMISSION) result code=0
05-24 21:18:24.471  2334  2373 V WindowManagerShell: Transition requested (#1291): android.os.BinderProxy@27adbe7 TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=23940 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity } baseActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} topActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} origActivity=null realActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} numActivities=1 lastActiveTime=185935579 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.window.IWindowContainerToken$Stub$Proxy@8fa3394} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 132 - 0, 0) topActivityInfo=ActivityInfo{6b73e3d com.quellehistoire.quellehistoire.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 isUserFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 1291 }
05-24 21:18:24.489  1631  1930 I ActivityManager: Start proc 27506:com.quellehistoire.quellehistoire/u0a543 for next-top-activity {com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}
05-24 21:18:24.495  1631  4521 D CoreBackPreview: Window{a68147b u0 Splash Screen com.quellehistoire.quellehistoire}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@e597d57, mPriority=0, mIsAnimationCallback=false}
05-24 21:18:24.501  1631  1900 V WindowManager: Sent Transition (#1291) createdAt=05-24 21:18:24.461 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=23940 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity } baseActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} topActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} origActivity=null realActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} numActivities=1 lastActiveTime=185935579 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{4f4ecb0 Task{8eec15f #23940 type=standard A=10543:com.quellehistoire.quellehistoire}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 132 - 0, 0) topActivityInfo=ActivityInfo{c869729 com.quellehistoire.quellehistoire.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 isUserFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 1291 }
05-24 21:18:24.501  1631  1900 V WindowManager:         {WCT{RemoteToken{4f4ecb0 Task{8eec15f #23940 type=standard A=10543:com.quellehistoire.quellehistoire}}} m=OPEN f=NONE leash=Surface(name=Task=23940)/@0x8951044 sb=Rect(0, 0 - 1080, 2400) eb=Rect(0, 0 - 1080, 2400) d=0},
05-24 21:18:25.116  1631  2433 D CoreBackPreview: Window{e5d5f72 u0 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@604343b, mPriority=0, mIsAnimationCallback=false}
05-24 21:18:25.137  1631  2433 I MediaSessionStack: addSession to bottom of stack | record: com.quellehistoire.quellehistoire/media-session (userId=0)
05-24 21:18:26.984  1631  5430 I AppsFilter: interaction: PackageSetting{d50e2ce com.quellehistoire.quellehistoire/10543} -> PackageSetting{30eb355 com.google.android.apps.translate/10272} BLOCKED
05-24 21:18:26.984  1631  5430 I AppsFilter: interaction: PackageSetting{d50e2ce com.quellehistoire.quellehistoire/10543} -> PackageSetting{4af7be7 com.github.android/10370} BLOCKED
05-24 21:18:27.254  1631  4521 W PackageConfigPersister: App-specific configuration not found for packageName: com.quellehistoire.quellehistoire and userId: 0
05-24 21:18:27.586  1631  5430 D CoreBackPreview: Window{a68147b u0 Splash Screen com.quellehistoire.quellehistoire EXITING}: Setting back callback null
05-24 21:19:36.506  1631  5458 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #367690} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (60 skipped)
05-24 21:19:47.425  1631  4521 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #367700} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (22 skipped)
05-24 21:19:58.126  1631  4521 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #367708} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (17 skipped)
05-24 21:20:13.578  1631  5458 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #367715} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (11 skipped)
05-24 21:20:29.696  1631  4521 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #367748} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (39 skipped)
05-24 21:21:36.498  1631  4521 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #367998} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (71 skipped)
05-24 21:21:47.785  1631  5458 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #368006} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (10 skipped)
05-24 21:21:58.127  1631  5458 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #368038} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (57 skipped)
05-24 21:22:29.856  1631  5430 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #368122} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (48 skipped)
05-24 21:22:43.530  1631  5484 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #368179} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 14 (112 skipped)
05-24 21:23:30.123  1631  2000 I AppsFilter: interaction: PackageSetting{d50e2ce com.quellehistoire.quellehistoire/10543} -> PackageSetting{a5d1514 webfreak.si.rainradar/10336} BLOCKED
05-24 21:23:32.754  9388  9399 W gle.android.gms: ApkAssets: Deleting an ApkAssets object '<empty> and /data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.apk' with 1 weak references
05-24 21:24:18.845  1631  1900 V WindowManager:         {WCT{RemoteToken{4f4ecb0 Task{8eec15f #23940 type=standard A=10543:com.quellehistoire.quellehistoire}}} m=TO_BACK f=NONE leash=Surface(name=Task=23940)/@0x8951044 sb=Rect(0, 0 - 1080, 2400) eb=Rect(0, 0 - 1080, 2400) d=0},
05-24 21:24:18.880  1631  5484 I InputDispatcher: Channel [Gesture Monitor] swipe-up (server) is stealing input gesture for device 4 from [e5d5f72 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity (server), [Gesture Monitor] edge-swipe (server)]
05-24 21:24:19.947  1631  2433 D CoreBackPreview: Window{e5d5f72 u0 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}: Setting back callback null
05-24 21:24:19.964  1631  2433 W InputManager-JNI: Input channel object 'e5d5f72 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity (client)' was disposed without first being removed with the input manager!
05-24 21:24:19.973  1631  1904 I ActivityManager: Killing 27506:com.quellehistoire.quellehistoire/u0a543 (adj 900): remove task
05-24 21:24:20.190  1631  2231 D ConnectivityService: releasing NetworkRequest [ REQUEST id=8836, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ] (release request)
05-24 21:24:20.191  1631  2433 I MediaSessionStack: removeSession | record: com.quellehistoire.quellehistoire/media-session (userId=0)
05-24 21:24:20.191  1631  2231 D ConnectivityService: releasing NetworkRequest [ REQUEST id=8838, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ] (release request)
05-24 21:24:23.946 21326 21336 W s.nexuslauncher: ApkAssets: Deleting an ApkAssets object '<empty> and /data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.apk' with 1 weak references
05-24 21:24:30.756  1631  1662 I ActivityManager: Force stopping com.quellehistoire.quellehistoire appid=10543 user=0: from pid 28240
05-24 21:24:30.763  1631  1662 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{bfae6a9 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:24:30.763  1631  1662 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{bfae6a9 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:24:30.793  2772  2772 D CarrierSvcBindHelper: onHandleForceStop: [com.quellehistoire.quellehistoire]
05-24 21:24:31.078  1631  1662 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity (has extras)} with LAUNCH_SINGLE_TOP from uid 2000 (BAL_ALLOW_PERMISSION) result code=0
05-24 21:24:31.078  2334  2373 V WindowManagerShell: Transition requested (#1293): android.os.BinderProxy@fef2636 TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=23941 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity } baseActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} topActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} origActivity=null realActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} numActivities=1 lastActiveTime=186302187 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.window.IWindowContainerToken$Stub$Proxy@a3be937} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 132 - 0, 0) topActivityInfo=ActivityInfo{41b3ea4 com.quellehistoire.quellehistoire.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 isUserFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 1293 }
05-24 21:24:31.088  1631  2436 D CoreBackPreview: Window{27b7a78 u0 Splash Screen com.quellehistoire.quellehistoire}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@1d81b6, mPriority=0, mIsAnimationCallback=false}
05-24 21:24:31.094  1631  1900 V WindowManager: Sent Transition (#1293) createdAt=05-24 21:24:31.072 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=23941 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x30000000 cmp=com.quellehistoire.quellehistoire/.MainActivity } baseActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} topActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} origActivity=null realActivity=ComponentInfo{com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity} numActivities=1 lastActiveTime=186302187 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{6a3af53 Task{20dd6bf #23941 type=standard A=10543:com.quellehistoire.quellehistoire}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 132 - 0, 0) topActivityInfo=ActivityInfo{4f2090 com.quellehistoire.quellehistoire.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 isUserFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 1293 }
05-24 21:24:31.094  1631  1900 V WindowManager:         {WCT{RemoteToken{6a3af53 Task{20dd6bf #23941 type=standard A=10543:com.quellehistoire.quellehistoire}}} m=OPEN f=NONE leash=Surface(name=Task=23941)/@0x2d9deb7 sb=Rect(0, 0 - 1080, 2400) eb=Rect(0, 0 - 1080, 2400) d=0},
05-24 21:24:31.096  1631  1930 I ActivityManager: Start proc 28270:com.quellehistoire.quellehistoire/u0a543 for next-top-activity {com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}
05-24 21:24:31.141 28270 28270 W ziparchive: Unable to open '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.dm': No such file or directory
05-24 21:24:31.141 28270 28270 W ziparchive: Unable to open '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.dm': No such file or directory
05-24 21:24:31.331 28270 28270 D nativeloader: Configuring clns-4 for other apk /data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/lib/arm64:/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.quellehistoire.quellehistoire
05-24 21:24:31.380 28270 28309 D vulkan  : searching for layers in '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/lib/arm64'
05-24 21:24:31.381 28270 28309 D vulkan  : searching for layers in '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.apk!/lib/arm64-v8a'
05-24 21:24:31.427 28270 28309 D vulkan  : added global layer 'VK_LAYER_KHRONOS_validation' from library '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.apk!/lib/arm64-v8a/libVkLayer_khronos_validation.so'
05-24 21:24:31.444 28270 28270 W .quellehistoire: type=1400 audit(0.0:31473): avc:  denied  { read } for  name="max_map_count" dev="proc" ino=6166551 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:proc_max_map_count:s0 tclass=file permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:31.736  1631  1927 D CoreBackPreview: Window{6868bfa u0 com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@e876f23, mPriority=0, mIsAnimationCallback=false}
05-24 21:24:31.756  1631  3403 I MediaSessionStack: addSession to bottom of stack | record: com.quellehistoire.quellehistoire/media-session (userId=0)
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31474): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31475): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31476): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31477): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31478): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31479): avc:  denied  { getattr } for  path="/metadata" dev="sda8" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:metadata_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.160 28270 28270 W isarworker: type=1400 audit(0.0:31480): avc:  denied  { getattr } for  path="/apex/apex-info-list.xml" dev="tmpfs" ino=94 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:apex_info_file:s0 tclass=file permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:24:32.403  1631  1662 D ConnectivityService: requestNetwork for uid/pid:10543/28270 activeRequest: null callbackRequest: 8853 [NetworkRequest [ REQUEST id=8854, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
05-24 21:24:32.405  1631  2223 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=8854, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.405  1631  2223 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8854, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.405  1631  2223 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8854, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.405  1631  2223 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8854, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.409  9388  9419 W AdvertisingIdSettings: Package com.quellehistoire.quellehistoire failed Ad Id permission check. Apps that target Android SDK 33 or higher should declare com.google.android.gms.permission.AD_ID in the app manifest to access Ad Id.
05-24 21:24:32.444 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.445 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.459 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.459 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.509 20736 28401 I Finsky  : [750] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.509 20736 28401 I Finsky  : [750] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.524 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.525 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.538 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.538 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.769  1631  1662 D ConnectivityService: requestNetwork for uid/pid:10543/28270 activeRequest: null callbackRequest: 8855 [NetworkRequest [ REQUEST id=8856, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
05-24 21:24:32.772  1631  2223 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=8856, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.772  1631  2223 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8856, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.772  1631  2223 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8856, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.772  1631  2223 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8856, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:32.915 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.915 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.922 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.922 20736 20794 I Finsky  : [566] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.922 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.922 20736 20794 I Finsky  : [566] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.938 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.938 20736 20794 I Finsky  : [566] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.939 20736 20794 I Finsky  : [566] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:32.939 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:24:33.533  1631  1927 I AppsFilter: interaction: PackageSetting{6e9c5d6 com.quellehistoire.quellehistoire/10543} -> PackageSetting{30eb355 com.google.android.apps.translate/10272} BLOCKED
05-24 21:24:33.533  1631  1927 I AppsFilter: interaction: PackageSetting{6e9c5d6 com.quellehistoire.quellehistoire/10543} -> PackageSetting{4af7be7 com.github.android/10370} BLOCKED
05-24 21:24:33.712   563   563 W gralloc4: Unable to set buffer name SurfaceView[com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity]#1(BLAST Consumer)1: File name too long
05-24 21:24:33.744  1631  1900 W ziparchive: Unable to open '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.dm': No such file or directory
05-24 21:24:33.746  1631  1900 I ActivityTaskManager: Displayed com.quellehistoire.quellehistoire/.MainActivity for user 0: +2s679ms
05-24 21:24:33.746  1631  1900 I ActivityTaskManager: Fully drawn com.quellehistoire.quellehistoire/.MainActivity: +2s679ms
05-24 21:24:33.747  1631  1900 W ziparchive: Unable to open '/data/app/~~dsdnXtd_bE_DozxRs9LLjw==/com.quellehistoire.quellehistoire-8HnP9aZKVLE4CpaNpiomFg==/base.dm': No such file or directory
05-24 21:24:33.778  1631  1927 I ImeTracker: com.quellehistoire.quellehistoire:be34d50c: onRequestHide at ORIGIN_SERVER_HIDE_INPUT reason HIDE_UNSPECIFIED_WINDOW
05-24 21:24:33.778  1631  1927 I ImeTracker: com.quellehistoire.quellehistoire:be34d50c: onCancelled at PHASE_SERVER_SHOULD_HIDE
05-24 21:24:33.782 13587 13587 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1954 onStartInput(EditorInfo{EditorInfo{packageName=com.quellehistoire.quellehistoire, inputType=0, inputTypeString=NULL, enableLearning=false, autoCorrection=false, autoComplete=false, imeOptions=0, privateImeOptions=null, actionName=UNSPECIFIED, actionLabel=null, initialSelStart=-1, initialSelEnd=-1, initialCapsMode=0, label=null, fieldId=0, fieldName=null, extras=null, hintText=null, hintLocales=[]}}, false)
05-24 21:24:33.784  1631  1927 W PackageConfigPersister: App-specific configuration not found for packageName: com.quellehistoire.quellehistoire and userId: 0
05-24 21:24:33.796  1631  1927 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:24:33.800  1631  1927 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:24:33.808  1631  1927 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:24:33.856   563   563 W gralloc4: Unable to set buffer name SurfaceView[com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity]#1(BLAST Consumer)1: File name too long
05-24 21:24:33.904 28270 28270 W InteractionJankMonitor: Initializing without READ_DEVICE_CONFIG permission. enabled=false, interval=1, missedFrameThreshold=3, frameTimeThreshold=64, package=com.quellehistoire.quellehistoire
05-24 21:24:33.926   563   563 W gralloc4: Unable to set buffer name SurfaceView[com.quellehistoire.quellehistoire/com.quellehistoire.quellehistoire.MainActivity]#1(BLAST Consumer)1: File name too long
05-24 21:24:34.110  1631  2436 D CoreBackPreview: Window{27b7a78 u0 Splash Screen com.quellehistoire.quellehistoire EXITING}: Setting back callback null
05-24 21:24:34.110  1631  1927 W InputManager-JNI: Input channel object '27b7a78 Splash Screen com.quellehistoire.quellehistoire (client)' was disposed without first being removed with the input manager!
05-24 21:24:44.049  1631  1662 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:24:49.613  1631  2436 D ConnectivityService: requestNetwork for uid/pid:10543/28270 activeRequest: null callbackRequest: 8857 [NetworkRequest [ REQUEST id=8858, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
05-24 21:24:49.622  1631  2223 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=8858, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:49.622  1631  2223 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8858, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:49.623  1631  2223 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8858, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:49.623  1631  2223 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8858, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:24:49.921  1631  1631 W JobScheduler: Job didn't exist in JobStore: debb9f6 #u0a543/982 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:24:50.583  1631  2000 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{f82703a com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:24:50.583  1631  2000 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{f82703a com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:24:50.590 21326 21361 D PackageUpdatedTask: mAllAppsList.updatePackage com.quellehistoire.quellehistoire
05-24 21:24:50.592  2772  2772 D CarrierSvcBindHelper: onPackageModified: com.quellehistoire.quellehistoire
05-24 21:24:50.613  2772  3003 D ImsResolver: maybeAddedImsService, packageName: com.quellehistoire.quellehistoire
05-24 21:24:51.139 28270 28568 I TaskWorker: Successfully downloaded taskId 351_4029 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4029
05-24 21:24:51.191 28270 28561 I TaskWorker: Successfully downloaded taskId 351-intro to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351-intro
05-24 21:24:51.494 28270 28560 I TaskWorker: Successfully downloaded taskId 351_4025 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4025
05-24 21:24:51.534 28270 28572 I TaskWorker: Successfully downloaded taskId 351_4024 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4024
05-24 21:24:51.551 28270 28561 I TaskWorker: Successfully downloaded taskId 351_4021 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4021
05-24 21:24:51.579 28270 28560 I TaskWorker: Successfully downloaded taskId 351_4026 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4026
05-24 21:24:51.607 28270 28572 I TaskWorker: Successfully downloaded taskId 351-cover to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351-cover}
05-24 21:24:51.720 28270 28566 I TaskWorker: Successfully downloaded taskId 351_4027 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4027
05-24 21:24:51.758  1631  5430 W JobScheduler: Job didn't exist in JobStore: 4dc33ad #u0a543/992 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:24:51.787 28270 28572 I TaskWorker: Successfully downloaded taskId 351_4020 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4020
05-24 21:24:51.812  1631  5430 W JobScheduler: Job didn't exist in JobStore: b416fe8 #u0a543/985 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:24:52.063 28270 28589 I TaskWorker: Successfully downloaded taskId 351_4022 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4022
05-24 21:24:52.096  1631  1927 W JobScheduler: Job didn't exist in JobStore: 52ccd32 #u0a543/987 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:24:52.194 28270 28565 I TaskWorker: Successfully downloaded taskId 351_4028 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4028
05-24 21:24:52.236  1631  1927 W JobScheduler: Job didn't exist in JobStore: 820bd30 #u0a543/993 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:24:53.192 28270 28570 I TaskWorker: Successfully downloaded taskId 351_4023 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4023
05-24 21:24:53.242  1631  1927 W JobScheduler: Job didn't exist in JobStore: 7cbf439 #u0a543/988 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:24:54.223  1631  2000 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{5fb7ec8 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:24:54.224  1631  2000 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{5fb7ec8 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:24:54.249  2772  2772 D CarrierSvcBindHelper: onPackageModified: com.quellehistoire.quellehistoire
05-24 21:24:54.289  2772  3003 D ImsResolver: maybeAddedImsService, packageName: com.quellehistoire.quellehistoire
05-24 21:24:54.305 21326 21361 D PackageUpdatedTask: mAllAppsList.updatePackage com.quellehistoire.quellehistoire
05-24 21:24:58.142  1631  5511 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368575} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (232 skipped)
05-24 21:26:00.666  1631  2435 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368856} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (99 skipped)
05-24 21:26:18.951  1631  2435 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368861} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (7 skipped)
05-24 21:26:56.049  1631  1929 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368872} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (3 skipped)
05-24 21:27:08.371  1631  3403 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368919} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (83 skipped)
05-24 21:27:28.875  1631  3403 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368922} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (5 skipped)
05-24 21:27:44.986  1631  4599 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368925} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (5 skipped)
05-24 21:27:57.544  1631  1929 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368926} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (1 skipped)
05-24 21:28:12.691  1631  4599 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368960} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (60 skipped)
05-24 21:28:31.024  1631  1929 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368962} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (3 skipped)
05-24 21:28:48.913  1631  4599 W ProcessStats: Tracking association SourceState{e4dfb3 com.quellehistoire.quellehistoire/10543 BTop #368965} whose proc state 2 is better than process ProcessState{11d7184 com.google.android.gms/10136 pkg=com.google.android.gms} proc state 15 (5 skipped)
05-24 21:29:23.628 28270 28270 W isarworker: type=1400 audit(0.0:31618): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:29:23.628 28270 28270 W isarworker: type=1400 audit(0.0:31619): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:29:23.628 28270 28270 W isarworker: type=1400 audit(0.0:31620): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:29:23.628 28270 28270 W isarworker: type=1400 audit(0.0:31621): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:29:23.628 28270 28270 W isarworker: type=1400 audit(0.0:31622): avc:  denied  { search } for  name="vendor" dev="tmpfs" ino=2 scontext=u:r:untrusted_app:s0:c31,c258,c512,c768 tcontext=u:object_r:mnt_vendor_file:s0 tclass=dir permissive=0 app=com.quellehistoire.quellehistoire
05-24 21:29:23.972 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.973 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.974 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.975 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.987 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.987 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.990 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.991 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.995 20736 29491 I Finsky  : [759] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:23.996 20736 29491 I Finsky  : [759] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:24.831  1631  4599 D ConnectivityService: requestNetwork for uid/pid:10543/28270 activeRequest: null callbackRequest: 8884 [NetworkRequest [ REQUEST id=8885, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
05-24 21:29:24.839  1631  2223 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=8885, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:24.840  1631  2223 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8885, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:24.840  1631  2223 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8885, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:24.841  1631  2223 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8885, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:25.110 20736 28377 I Finsky  : [749] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.111 20736 28377 I Finsky  : [749] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.111 20736 20794 I Finsky  : [566] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.111 20736 20794 I Finsky  : [566] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.113 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.113 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.119 20736 20748 I Finsky  : [546] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.120 20736 20748 I Finsky  : [546] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.121 20736 20794 I Finsky  : [566] mbm.a(263): com.quellehistoire.quellehistoire: Account from first account - [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.121 20736 20794 I Finsky  : [566] mbm.a(885): Billing preferred account via installer for com.quellehistoire.quellehistoire: [EfLpB1m-wbXu3Kz6EQWwfqHKuL7wqrHxf4YFznppDng]
05-24 21:29:25.663  1631  4599 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:29:25.677  1631  5511 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:29:25.689  1631  5511 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:29:35.048  1631  3756 W TelephonyPermissions: reportAccessDeniedToReadIdentifiers:com.quellehistoire.quellehistoire:getSerial:-1
05-24 21:29:38.006  1631  5430 D ConnectivityService: requestNetwork for uid/pid:10543/28270 activeRequest: null callbackRequest: 8886 [NetworkRequest [ REQUEST id=8887, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
05-24 21:29:38.009  1631  2223 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=8887, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:38.009  1631  2223 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8887, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:38.009  1631  2223 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8887, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:38.009  1631  2223 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=8887, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10543 RequestorUid: 10543 RequestorPkg: com.quellehistoire.quellehistoire UnderlyingNetworks: Null] ]
05-24 21:29:38.280  1631  1631 W JobScheduler: Job didn't exist in JobStore: 41c0c85 #u0a543/995 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:29:38.912  1631  2000 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{43a1a92 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:29:38.912  1631  2000 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{43a1a92 com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:29:38.921  2772  2772 D CarrierSvcBindHelper: onPackageModified: com.quellehistoire.quellehistoire
05-24 21:29:38.958  2772  3003 D ImsResolver: maybeAddedImsService, packageName: com.quellehistoire.quellehistoire
05-24 21:29:39.384 28270 29606 I TaskWorker: Successfully downloaded taskId 351-intro to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351-intro
05-24 21:29:39.422  1631  2970 W JobScheduler: Job didn't exist in JobStore: d74473d #u0a543/997 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:29:39.769 28270 29586 I TaskWorker: Successfully downloaded taskId 351_4025 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4025
05-24 21:29:39.791  1631  4599 W JobScheduler: Job didn't exist in JobStore: c341073 #u0a543/1003 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:29:39.825 28270 28579 I TaskWorker: Successfully downloaded taskId 351_4028 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4028
05-24 21:29:40.026 28270 29607 I TaskWorker: Successfully downloaded taskId 351_4022 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4022
05-24 21:29:40.040 21326 21361 D PackageUpdatedTask: mAllAppsList.updatePackage com.quellehistoire.quellehistoire
05-24 21:29:40.173 28270 29607 I TaskWorker: Successfully downloaded taskId 351_4024 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4024
05-24 21:29:40.216  1631  2435 W JobScheduler: Job didn't exist in JobStore: 63076c4 #u0a543/1002 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:29:40.292 28270 29607 I TaskWorker: Successfully downloaded taskId 351_4020 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4020
05-24 21:29:40.345 28270 28579 I TaskWorker: Successfully downloaded taskId 351_4021 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4021
05-24 21:29:40.390 28270 28560 I TaskWorker: Successfully downloaded taskId 351_4023 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4023
05-24 21:29:40.421 28270 28579 I TaskWorker: Successfully downloaded taskId 351_4026 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4026
05-24 21:29:40.536 28270 28570 I TaskWorker: Successfully downloaded taskId 351_4029 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4029
05-24 21:29:40.537 28270 29591 I TaskWorker: Successfully downloaded taskId 351-cover to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351-cover}
05-24 21:29:40.664 28270 28572 I TaskWorker: Successfully downloaded taskId 351_4027 to /data/user/0/com.quellehistoire.quellehistoire/app_flutter/351_4027
05-24 21:29:40.706  1631  2435 W JobScheduler: Job didn't exist in JobStore: e2e3165 #u0a543/1005 com.quellehistoire.quellehistoire/androidx.work.impl.background.systemjob.SystemJobService
05-24 21:29:41.692  1631  2000 I AppsFilter: interaction: PackageSetting{d87533f com.example.lockwine_app/10550} -> PackageSetting{1fbd35b com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:29:41.693  1631  2000 I AppsFilter: interaction: PackageSetting{44f2155 com.google.android.microdroid.empty_payload/10386} -> PackageSetting{1fbd35b com.quellehistoire.quellehistoire/10543} BLOCKED
05-24 21:29:41.716  2772  2772 D CarrierSvcBindHelper: onPackageModified: com.quellehistoire.quellehistoire
05-24 21:29:41.744  2772  3003 D ImsResolver: maybeAddedImsService, packageName: com.quellehistoire.quellehistoire
05-24 21:29:41.795 21326 21361 D PackageUpdatedTask: mAllAppsList.updatePackage com.quellehistoire.quellehistoire
05-24 21:30:38.997  1631  3403 W ProcessStats: Tracking association SourceState{37bf183 com.quellehistoire.quellehistoire/10543 BTop #369478} whose proc state 2 is better than process ProcessState{c958f58 com.android.vending/10115 pkg=com.android.vending} proc state 15 (105 skipped)
alanlanglois commented 4 months ago

@781flyingdutchman I found the problem 🎉 and... you were right it was from my side ! As I said, I call FileDownloader().reset(group: book.id.toString()); before starting downloading the batch. I missed the await before. Not sure why it was working on the version 7. 12.3 though. Anyway in my case the reset is probably still processing while FileDownloader().downloadBatch() starts.

For those who would make the same mistake here what you should do:

await FileDownloader().reset(group: "groupId"); //don't miss the await as reset return a promise. 
//and then call 
final Batch result = await FileDownloader().downloadBatch(.....

@781flyingdutchman Thanks for this great package and your reactivity, keep up the good work :)

781flyingdutchman commented 4 months ago

That makes sense. Not sure exactly what changed from version 7 to 8, but reset should indeed be awaited. I'm general I'd suggest not using reset, and use cancel tasks instead, as it's a bit like a hard reset. Glad you've been able to solve it!