-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Closed
Labels
Needs AttentionThis issue needs maintainer attention.This issue needs maintainer attention.platform: androidIssues / PRs which are specifically for Android.Issues / PRs which are specifically for Android.plugin: databasetype: bugSomething isn't workingSomething isn't working
Description
Is there an existing issue for this?
- I have searched the existing issues.
Which plugins are affected?
Database
Which platforms are affected?
Android
Description
Problem: Users are experiencing out-of-memory crashes starting in firebase_database version 12.1.1.
Root Cause: The issue appears after updating firebase_database from version 12.0.4 to 12.1.1.
Technical Details: The keepSynced method downloads all data for the entire path (example: jobs/uid) instead of only the specific query results that are needed.
Impact: This behavior causes out-of-memory errors for users who have large amounts of data.
See stacktrace file:
Reproducing the issue
Create a firebase project with a large database location of jobs at path "jobs/uid/jobId".
Use the keepSynced on a query like:
var db = FirebaseDatabase.instanceFor(
app: Firebase.app(), databaseURL: dbURL).ref();
db.child("jobs").child("uid").orderByChild('jobTimeInMillisUTC')
.startAt(startAtValue)
.endAt(endAtValue)
.limitToLast(40)
.keepSynced(true);Firebase Core version
4.3.0
Flutter Version
3.32.8
Relevant Log Output
I/flutter ( 9850): {orderBy: child, orderByChildKey: jobTimeInMillisUTC, limitToLast: 40, path: jobs/uid}
D/FirebaseDatabase( 9850): 🔍 Kotlin: Setting up query observe for path=jobs/uid
D/EGL_emulation( 9850): app_time_stats: avg=23.41ms min=11.33ms max=200.96ms count=43
D/EGL_emulation( 9850): app_time_stats: avg=8.16ms min=2.86ms max=29.41ms count=60
D/EGL_emulation( 9850): app_time_stats: avg=14.29ms min=3.92ms max=32.73ms count=57
D/EGL_emulation( 9850): app_time_stats: avg=6.35ms min=3.03ms max=23.89ms count=59
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 5177KB AllocSpace bytes, 473(13MB) LOS objects, 50% free, 21MB/42MB, paused 1.713ms,4.517ms total 275.187ms
W/endaboa.app.dev( 9850): ApkAssets: Deleting an ApkAssets object '<empty> and /product/app/talkback/talkback.apk' with 1 weak references
W/endaboa.app.dev( 9850): ApkAssets: Deleting an ApkAssets object '/vendor/overlay/EmulatorTalkBackOverlay/EmulatorTalkBackOverlay.apk' with 1 weak references
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 1828KB AllocSpace bytes, 710(19MB) LOS objects, 48% free, 25MB/49MB, paused 1.439ms,6.277ms total 244.313ms
D/EGL_emulation( 9850): app_time_stats: avg=17.49ms min=7.33ms max=31.79ms count=53
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2140KB AllocSpace bytes, 849(23MB) LOS objects, 43% free, 30MB/54MB, paused 969us,8.157ms total 368.852ms
D/EGL_emulation( 9850): app_time_stats: avg=11.40ms min=3.43ms max=31.21ms count=55
D/EGL_emulation( 9850): app_time_stats: avg=15.04ms min=3.39ms max=33.83ms count=52
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2140KB AllocSpace bytes, 893(24MB) LOS objects, 39% free, 36MB/60MB, paused 2.254ms,7.884ms total 462.798ms
D/EGL_emulation( 9850): app_time_stats: avg=33.36ms min=5.96ms max=54.89ms count=29
D/EGL_emulation( 9850): app_time_stats: avg=44.26ms min=4.49ms max=227.79ms count=24
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 5980KB AllocSpace bytes, 733(20MB) LOS objects, 31% free, 51MB/75MB, paused 3.152ms,12.793ms total 1.067s
D/EGL_emulation( 9850): app_time_stats: avg=31.70ms min=7.69ms max=131.52ms count=30
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 6972KB AllocSpace bytes, 1095(31MB) LOS objects, 34% free, 45MB/69MB, paused 760us,5.421ms total 604.831ms
D/EGL_emulation( 9850): app_time_stats: avg=16.04ms min=2.89ms max=60.28ms count=48
D/EGL_emulation( 9850): app_time_stats: avg=21.68ms min=6.12ms max=105.43ms count=41
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2140KB AllocSpace bytes, 881(24MB) LOS objects, 32% free, 50MB/74MB, paused 1.929ms,8.592ms total 456.464ms
D/EGL_emulation( 9850): app_time_stats: avg=19.57ms min=7.43ms max=32.76ms count=44
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2260KB AllocSpace bytes, 939(25MB) LOS objects, 30% free, 54MB/78MB, paused 1.316ms,7.883ms total 550.549ms
D/EGL_emulation( 9850): app_time_stats: avg=18.78ms min=5.81ms max=37.61ms count=46
D/EGL_emulation( 9850): app_time_stats: avg=17.10ms min=3.02ms max=47.08ms count=47
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2180KB AllocSpace bytes, 877(23MB) LOS objects, 26% free, 65MB/89MB, paused 3.807ms,7.979ms total 945.427ms
D/EGL_emulation( 9850): app_time_stats: avg=16.01ms min=4.97ms max=43.79ms count=49
I/endaboa.app.dev( 9850): Waiting for a blocking GC ProfileSaver
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2628KB AllocSpace bytes, 1092(29MB) LOS objects, 26% free, 65MB/89MB, paused 1.105ms,4.931ms total 516.807ms
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked ProfileSaver on Background for 255.165ms
D/EGL_emulation( 9850): app_time_stats: avg=17.70ms min=6.15ms max=35.17ms count=48
D/EGL_emulation( 9850): app_time_stats: avg=16.41ms min=6.17ms max=32.87ms count=50
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2516KB AllocSpace bytes, 928(25MB) LOS objects, 25% free, 70MB/94MB, paused 7.201ms,7.162ms total 628.583ms
D/EGL_emulation( 9850): app_time_stats: avg=23.14ms min=6.19ms max=45.84ms count=41
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2196KB AllocSpace bytes, 905(24MB) LOS objects, 23% free, 79MB/103MB, paused 2.745ms,6.521ms total 947.552ms
D/EGL_emulation( 9850): app_time_stats: avg=21.79ms min=5.79ms max=46.05ms count=41
D/EGL_emulation( 9850): app_time_stats: avg=22.83ms min=5.97ms max=63.72ms count=38
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2680KB AllocSpace bytes, 1106(30MB) LOS objects, 22% free, 80MB/104MB, paused 4.376ms,5.285ms total 663.742ms
D/EGL_emulation( 9850): app_time_stats: avg=14.32ms min=4.59ms max=32.28ms count=51
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2164KB AllocSpace bytes, 890(24MB) LOS objects, 21% free, 85MB/109MB, paused 2.083ms,11.529ms total 674.658ms
D/EGL_emulation( 9850): app_time_stats: avg=17.92ms min=4.16ms max=58.20ms count=43
D/EGL_emulation( 9850): app_time_stats: avg=16.86ms min=5.82ms max=44.17ms count=47
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2228KB AllocSpace bytes, 903(24MB) LOS objects, 21% free, 90MB/114MB, paused 3.001ms,6.895ms total 583.833ms
D/EGL_emulation( 9850): app_time_stats: avg=12.54ms min=3.56ms max=30.10ms count=53
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2176KB AllocSpace bytes, 885(24MB) LOS objects, 20% free, 95MB/119MB, paused 1.978ms,15.704ms total 434.082ms
D/EGL_emulation( 9850): app_time_stats: avg=14.18ms min=3.48ms max=36.33ms count=53
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2356KB AllocSpace bytes, 915(24MB) LOS objects, 19% free, 101MB/125MB, paused 1.445ms,8.977ms total 790.406ms
D/EGL_emulation( 9850): app_time_stats: avg=14.58ms min=4.53ms max=36.43ms count=52
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2552KB AllocSpace bytes, 1066(29MB) LOS objects, 18% free, 103MB/127MB, paused 1.001ms,6.799ms total 295.111ms
D/EGL_emulation( 9850): app_time_stats: avg=28.67ms min=5.57ms max=288.04ms count=31
D/EGL_emulation( 9850): app_time_stats: avg=22.22ms min=4.15ms max=51.60ms count=41
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2336KB AllocSpace bytes, 915(25MB) LOS objects, 17% free, 112MB/136MB, paused 1.317ms,6.733ms total 1.062s
D/EGL_emulation( 9850): app_time_stats: avg=20.32ms min=5.21ms max=58.84ms count=40
D/EGL_emulation( 9850): app_time_stats: avg=11.08ms min=3.37ms max=36.94ms count=56
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2424KB AllocSpace bytes, 1011(27MB) LOS objects, 17% free, 115MB/139MB, paused 892us,11.164ms total 475.575ms
D/EGL_emulation( 9850): app_time_stats: avg=11.61ms min=3.46ms max=33.25ms count=55
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2472KB AllocSpace bytes, 963(26MB) LOS objects, 16% free, 119MB/143MB, paused 3.756ms,9.520ms total 656.346ms
D/EGL_emulation( 9850): app_time_stats: avg=17.94ms min=3.98ms max=57.19ms count=46
D/EGL_emulation( 9850): app_time_stats: avg=19.97ms min=3.71ms max=37.19ms count=44
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2304KB AllocSpace bytes, 896(24MB) LOS objects, 15% free, 129MB/153MB, paused 2.299ms,14.073ms total 917.575ms
D/EGL_emulation( 9850): app_time_stats: avg=24.41ms min=5.20ms max=44.32ms count=38
D/EGL_emulation( 9850): app_time_stats: avg=18.99ms min=5.47ms max=36.30ms count=47
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2780KB AllocSpace bytes, 1081(29MB) LOS objects, 14% free, 138MB/162MB, paused 2.115ms,9.983ms total 1.149s
D/EGL_emulation( 9850): app_time_stats: avg=15.52ms min=4.25ms max=33.01ms count=54
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 3020KB AllocSpace bytes, 1270(34MB) LOS objects, 14% free, 137MB/161MB, paused 12.221ms,8.280ms total 727.274ms
D/EGL_emulation( 9850): app_time_stats: avg=13.50ms min=4.52ms max=35.09ms count=53
D/EGL_emulation( 9850): app_time_stats: avg=14.70ms min=3.90ms max=62.91ms count=50
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 2172KB AllocSpace bytes, 907(24MB) LOS objects, 14% free, 141MB/165MB, paused 1.645ms,8.199ms total 557.055ms
D/EGL_emulation( 9850): app_time_stats: avg=16.61ms min=3.60ms max=31.80ms count=51
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 1148KB AllocSpace bytes, 436(15MB) LOS objects, 8% free, 260MB/284MB, paused 2.926ms,28.533ms total 540.257ms
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 128KB AllocSpace bytes, 4(58MB) LOS objects, 6% free, 327MB/351MB, paused 3.902ms,12.415ms total 445.018ms
D/EGL_emulation( 9850): app_time_stats: avg=11.30ms min=4.67ms max=38.09ms count=42
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 1396KB AllocSpace bytes, 2(187MB) LOS objects, 8% free, 263MB/287MB, paused 2.951ms,5.572ms total 267.687ms
D/EGL_emulation( 9850): app_time_stats: avg=12.32ms min=3.96ms max=47.10ms count=54
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 15MB AllocSpace bytes, 0(0B) LOS objects, 7% free, 279MB/303MB, paused 3.732ms,3.560ms total 301.040ms
D/EGL_emulation( 9850): app_time_stats: avg=8.27ms min=2.20ms max=21.85ms count=59
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 15MB AllocSpace bytes, 0(0B) LOS objects, 7% free, 297MB/321MB, paused 1.571ms,8.775ms total 399.323ms
D/EGL_emulation( 9850): app_time_stats: avg=12.22ms min=2.89ms max=31.88ms count=55
D/EGL_emulation( 9850): app_time_stats: avg=10.33ms min=3.06ms max=24.01ms count=58
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 15MB AllocSpace bytes, 0(0B) LOS objects, 7% free, 316MB/340MB, paused 1.987ms,5.676ms total 744.411ms
D/EGL_emulation( 9850): app_time_stats: avg=7.14ms min=3.30ms max=24.97ms count=59
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 17MB AllocSpace bytes, 0(0B) LOS objects, 6% free, 338MB/362MB, paused 3.251ms,7.879ms total 658.279ms
D/EGL_emulation( 9850): app_time_stats: avg=6.86ms min=2.49ms max=24.37ms count=59
D/EGL_emulation( 9850): app_time_stats: avg=15.66ms min=3.69ms max=95.55ms count=42
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 17MB AllocSpace bytes, 0(0B) LOS objects, 6% free, 364MB/388MB, paused 2.736ms,6.387ms total 974.013ms
D/EGL_emulation( 9850): app_time_stats: avg=6.88ms min=2.51ms max=39.71ms count=60
D/EGL_emulation( 9850): app_time_stats: avg=10.87ms min=2.97ms max=26.44ms count=57
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 18MB AllocSpace bytes, 0(0B) LOS objects, 5% free, 390MB/414MB, paused 5.782ms,7.786ms total 1.273s
D/EGL_emulation( 9850): app_time_stats: avg=10.29ms min=3.75ms max=32.92ms count=56
D/EGL_emulation( 9850): app_time_stats: avg=7.52ms min=2.33ms max=24.31ms count=58
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 21MB AllocSpace bytes, 4(80KB) LOS objects, 5% free, 424MB/448MB, paused 3.748ms,6.916ms total 1.610s
D/EGL_emulation( 9850): app_time_stats: avg=16.84ms min=3.35ms max=52.96ms count=48
D/EGL_emulation( 9850): app_time_stats: avg=7.55ms min=3.59ms max=23.57ms count=49
D/EGL_emulation( 9850): app_time_stats: avg=31.68ms min=5.88ms max=84.97ms count=30
D/EGL_emulation( 9850): app_time_stats: avg=26.18ms min=5.60ms max=76.77ms count=35
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 20MB AllocSpace bytes, 0(0B) LOS objects, 4% free, 456MB/480MB, paused 8.699ms,10.995ms total 3.045s
D/EGL_emulation( 9850): app_time_stats: avg=13.03ms min=3.16ms max=34.22ms count=54
D/EGL_emulation( 9850): app_time_stats: avg=8.02ms min=3.61ms max=25.29ms count=60
I/endaboa.app.dev( 9850): Waiting for a blocking GC ProfileSaver
D/EGL_emulation( 9850): app_time_stats: avg=11.98ms min=3.97ms max=24.40ms count=58
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=6.19ms min=3.19ms max=10.99ms count=60
I/endaboa.app.dev( 9850): Clamp target GC heap from 517MB to 512MB
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 18MB AllocSpace bytes, 0(0B) LOS objects, 3% free, 493MB/512MB, paused 1.121ms,8.264ms total 2.301s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked ProfileSaver on Background for 1.711s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 1.246s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=10.12ms min=3.72ms max=31.06ms count=55
D/EGL_emulation( 9850): app_time_stats: avg=9.10ms min=3.82ms max=28.42ms count=58
I/endaboa.app.dev( 9850): Clamp target GC heap from 532MB to 512MB
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 3276KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 508MB/512MB, paused 1.249ms,10.208ms total 1.968s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 1.934s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=10.01ms min=4.03ms max=22.34ms count=59
D/EGL_emulation( 9850): app_time_stats: avg=9.96ms min=3.94ms max=25.89ms count=58
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 636KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 730us,13.830ms total 1.897s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 1.890s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=9.64ms min=2.99ms max=33.41ms count=57
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=37.40ms min=4.35ms max=102.96ms count=25
D/EGL_emulation( 9850): app_time_stats: avg=26.61ms min=5.12ms max=93.80ms count=35
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=29.64ms min=4.25ms max=97.70ms count=29
D/EGL_emulation( 9850): app_time_stats: avg=14.31ms min=3.29ms max=42.28ms count=52
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 180KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 1.178ms,21.702ms total 4.387s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 4.375s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
5
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=20.09ms min=3.86ms max=42.06ms count=44
D/EGL_emulation( 9850): app_time_stats: avg=35.86ms min=5.25ms max=76.34ms count=27
D/EGL_emulation( 9850): app_time_stats: avg=30.86ms min=4.42ms max=80.77ms count=27
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=38.85ms min=6.90ms max=119.20ms count=23
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 140KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 1.388ms,13.764ms total 4.974s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 6.122s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 9.304s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 8.986s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Forcing collection of SoftReferences for 32B allocation
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
4
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=17.48ms min=3.67ms max=45.30ms count=45
D/EGL_emulation( 9850): app_time_stats: avg=13.13ms min=4.29ms max=28.42ms count=54
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Alloc concurrent mark compact GC freed 260KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 1.441ms,7.680ms total 2.023s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 3.596s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 6.986s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 2.029s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked HeapTrim on Alloc for 2.033s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on HeapTrim for 8.185s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Forcing collection of SoftReferences for 40B allocation
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
W/endaboa.app.dev( 9850): Throwing OutOfMemoryError "Failed to allocate a 32 byte allocation with 97168 free bytes and 94KB until OOM, target footprint 536870912, growth limit 536870912; giving up on allocation because <1% of heap free after GC." (VmSize 21958688 kB)
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=8.01ms min=3.51ms max=22.93ms count=58
D/EGL_emulation( 9850): app_time_stats: avg=6.75ms min=3.69ms max=21.51ms count=60
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=12.11ms min=3.95ms max=40.90ms count=53
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Alloc concurrent mark compact GC freed 152KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 2.312ms,10.972ms total 2.441s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 2.440s
2
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 385.056ms
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Forcing collection of SoftReferences for 16B allocation
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
W/endaboa.app.dev( 9850): Throwing OutOfMemoryError "Failed to allocate a 40 byte allocation with 23440 free bytes and 22KB until OOM, target footprint 536870912, growth limit 536870912; giving up on allocation because <1% of heap free after GC." (VmSize 21958688 kB)
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
I/endaboa.app.dev( 9850): Forcing collection of SoftReferences for 144B allocation
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=13.46ms min=3.25ms max=46.95ms count=50
D/EGL_emulation( 9850): app_time_stats: avg=9.86ms min=2.67ms max=29.02ms count=56
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Alloc concurrent mark compact GC freed 160KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 622us,6.351ms total 1.867s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 1.869s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): Forcing collection of SoftReferences for 24B allocation
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Alloc for 4.298s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
W/endaboa.app.dev( 9850): Throwing OutOfMemoryError "Failed to allocate a 16 byte allocation with 56160 free bytes and 54KB until OOM, target footprint 536870912, growth limit 536870912; giving up on allocation because <1% of heap free after GC." (VmSize 21958656 kB)
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Background on Alloc for 4.317s
7
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
E/AndroidRuntime( 9850): FATAL EXCEPTION: IntercomNexus-1
E/AndroidRuntime( 9850): Process: com.agendaboa.app.dev, PID: 9850
E/AndroidRuntime( 9850): java.lang.OutOfMemoryError: Failed to allocate a 32 byte allocation with 97168 free bytes and 94KB until OOM, target footprint 536870912, growth limit 536870912; giving up on allocation because <1% of heap free after GC.
E/AndroidRuntime( 9850): at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1661)
E/AndroidRuntime( 9850): at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)
E/AndroidRuntime( 9850): at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)
E/AndroidRuntime( 9850): at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1071)
E/AndroidRuntime( 9850): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1131)
E/AndroidRuntime( 9850): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)
E/AndroidRuntime( 9850): at java.lang.Thread.run(Thread.java:1012)
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/FirebaseSessions( 9850): App backgrounded on com.agendaboa.app.dev
2
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=17.83ms min=3.77ms max=164.76ms count=39
D/EGL_emulation( 9850): app_time_stats: avg=9.27ms min=3.30ms max=32.49ms count=52
I/endaboa.app.dev( 9850): Clamp target GC heap from 535MB to 512MB
I/endaboa.app.dev( 9850): Background concurrent mark compact GC freed 152KB AllocSpace bytes, 0(0B) LOS objects, 0% free, 511MB/512MB, paused 1.219ms,7.566ms total 2.321s
I/endaboa.app.dev( 9850): WaitForGcToComplete blocked Alloc on Background for 4.182s
I/endaboa.app.dev( 9850): Starting a blocking GC Alloc
10
I/endaboa.app.dev( 9850): Waiting for a blocking GC Alloc
D/EGL_emulation( 9850): app_time_stats: avg=12.21ms min=3.70ms max=41.22ms count=51
D/EGL_emulation( 9850): app_time_stats: avg=9.79ms min=3.92ms max=29.35ms count=44
E/FirebaseCrashlytics( 9850): Cannot send reports. Timed out while fetching settings.
I/Process ( 9850): Sending signal. PID: 9850 SIG: 9
Lost connection to device.
Exited.Flutter dependencies
Expand Flutter dependencies snippet
Dart SDK 3.8.1
Flutter SDK 3.32.8
agendaboa 3.9.30+236
dependencies:
- app_links 6.4.1 [flutter app_links_linux app_links_platform_interface app_links_web]
- app_settings 6.1.1 [flutter plugin_platform_interface]
- app_tracking_transparency 2.0.6+1 [flutter]
- async 2.13.0 [collection meta]
- auto_size_text 3.0.0 [flutter]
- bot_toast 4.1.3 [flutter]
- cached_network_image 3.4.1 [cached_network_image_platform_interface cached_network_image_web flutter flutter_cache_manager octo_image]
- calendar_date_picker2 2.0.1 [flutter intl]
- camera 0.11.2 [camera_android_camerax camera_avfoundation camera_platform_interface camera_web flutter flutter_plugin_android_lifecycle]
- carousel_slider 5.1.1 [flutter]
- charts_flutter 0.12.0 [charts_common collection flutter intl logging meta]
- cloud_firestore 6.1.1 [cloud_firestore_platform_interface cloud_firestore_web collection firebase_core firebase_core_platform_interface flutter meta]
- cloud_functions 6.0.5 [cloud_functions_platform_interface cloud_functions_web firebase_core firebase_core_platform_interface flutter]
- collection 1.19.1
- connectivity_plus 7.0.0 [flutter flutter_web_plugins connectivity_plus_platform_interface web meta nm collection]
- credit_card_validator 2.1.0 [credit_card_type_detector]
- crypto 3.0.7 [typed_data]
- cupertino_icons 1.0.8
- device_info_plus 12.3.0 [device_info_plus_platform_interface ffi file flutter flutter_web_plugins meta web win32 win32_registry]
- diacritic 0.1.6
- encrypt 5.0.1 [args asn1lib clock collection crypto pointycastle]
- facebook_app_events 0.24.0 [flutter]
- file_picker 10.3.8 [flutter flutter_web_plugins flutter_plugin_android_lifecycle plugin_platform_interface ffi path win32 cross_file web dbus]
- fingerprintjs 2.0.0 [js]
- firebase_analytics 12.1.0 [firebase_analytics_platform_interface firebase_analytics_web firebase_core firebase_core_platform_interface flutter]
- firebase_app_check 0.4.1+3 [firebase_app_check_platform_interface firebase_app_check_web firebase_core firebase_core_platform_interface flutter]
- firebase_auth 6.1.3 [firebase_auth_platform_interface firebase_auth_web firebase_core firebase_core_platform_interface flutter meta]
- firebase_core 4.3.0 [firebase_core_platform_interface firebase_core_web flutter meta]
- firebase_crashlytics 5.0.6 [firebase_core firebase_core_platform_interface firebase_crashlytics_platform_interface flutter stack_trace]
- firebase_database 12.1.1 [firebase_core firebase_core_platform_interface firebase_database_platform_interface firebase_database_web flutter]
- firebase_in_app_messaging 0.9.0+5 [firebase_core firebase_core_platform_interface firebase_in_app_messaging_platform_interface flutter meta]
- firebase_messaging 16.1.0 [firebase_core firebase_core_platform_interface firebase_messaging_platform_interface firebase_messaging_web flutter meta]
- firebase_remote_config 6.1.3 [firebase_core firebase_core_platform_interface firebase_remote_config_platform_interface firebase_remote_config_web flutter]
- firebase_storage 13.0.5 [firebase_core firebase_core_platform_interface firebase_storage_platform_interface firebase_storage_web flutter]
- flutter 0.0.0 [characters collection material_color_utilities meta vector_math sky_engine]
- flutter_cache_manager 3.4.1 [clock collection file flutter http path path_provider rxdart sqflite uuid]
- flutter_contact 0.9.1+7 [collection dartxx equatable flexidate flutter intl logging logging_config quiver uuid]
- flutter_keyboard_visibility 6.0.0 [meta flutter_keyboard_visibility_platform_interface flutter_keyboard_visibility_linux flutter_keyboard_visibility_macos flutter_keyboard_visibility_web flutter_keyboard_visibility_windows flutter]
- flutter_local_notifications 18.0.1 [clock flutter flutter_local_notifications_linux flutter_local_notifications_platform_interface timezone]
- flutter_localizations 0.0.0 [flutter intl characters clock collection material_color_utilities meta path vector_math]
- flutter_multi_formatter 2.12.8 [flutter collection base58check bech32]
- flutter_rating_bar 4.0.1 [flutter]
- flutter_signature_pad 3.0.1 [flutter]
- flutter_spinkit 5.2.2 [flutter]
- flutter_sticky_header 0.6.3 [flutter value_layout_builder]
- flutter_svg 2.2.3 [flutter http vector_graphics vector_graphics_codec vector_graphics_compiler]
- flutter_switch 0.3.2 [flutter]
- flutter_udid 4.0.0 [flutter crypto]
- flutter_web_plugins 0.0.0 [flutter characters collection material_color_utilities meta vector_math]
- gif 2.3.0 [flutter http]
- heif_converter_plus 1.0.2 [flutter plugin_platform_interface]
- hive 2.2.3 [meta crypto]
- hive_flutter 1.1.0 [flutter hive path_provider path]
- http 1.6.0 [async http_parser meta web]
- image 4.5.4 [archive meta xml]
- image_cropper 8.1.0 [flutter image_cropper_platform_interface image_cropper_for_web]
- image_picker 1.2.1 [flutter image_picker_android image_picker_for_web image_picker_ios image_picker_linux image_picker_macos image_picker_platform_interface image_picker_windows]
- in_app_purchase 3.2.1 [flutter in_app_purchase_android in_app_purchase_platform_interface in_app_purchase_storekit]
- in_app_review 2.0.11 [flutter in_app_review_platform_interface]
- intercom_flutter 9.4.22 [flutter flutter_web_plugins intercom_flutter_platform_interface intercom_flutter_web]
- intl 0.17.0 [clock path]
- json_annotation 4.9.0 [meta]
- mime 2.0.0
- mobile_scanner 7.0.1 [collection flutter flutter_web_plugins meta plugin_platform_interface web]
- numberpicker 2.1.2 [flutter infinite_listview]
- open_mail_app 0.4.4 [platform url_launcher flutter]
- package_info_plus 9.0.0 [ffi flutter flutter_web_plugins http meta path package_info_plus_platform_interface web win32 clock]
- path_provider 2.1.5 [flutter path_provider_android path_provider_foundation path_provider_linux path_provider_platform_interface path_provider_windows]
- pdf 3.11.3 [archive barcode bidi crypto image meta path_parsing vector_math xml]
- permission_handler 12.0.1 [flutter meta permission_handler_android permission_handler_apple permission_handler_html permission_handler_windows permission_handler_platform_interface]
- phosphor_flutter 2.1.0 [flutter]
- printing 5.14.2 [ffi flutter flutter_web_plugins http image meta pdf pdf_widget_wrapper plugin_platform_interface web]
- provider 6.1.5+1 [collection flutter nested]
- ripple_navigation 1.0.2 [flutter]
- rxdart 0.28.0
- scroll_to_index 3.0.1 [flutter]
- search_cep 4.0.2 [flutter http xml2json dartz]
- share_plus 12.0.1 [cross_file meta mime flutter flutter_web_plugins share_plus_platform_interface file url_launcher_web url_launcher_windows url_launcher_linux url_launcher_platform_interface ffi web win32]
- shared_preferences 2.5.3 [flutter shared_preferences_android shared_preferences_foundation shared_preferences_linux shared_preferences_platform_interface shared_preferences_web shared_preferences_windows]
- sliver_tools 0.2.12 [flutter]
- smooth_page_indicator 1.2.1 [flutter]
- sqflite 2.4.2 [flutter sqflite_android sqflite_darwin sqflite_platform_interface sqflite_common path]
- squadron 6.2.0 [cancelation_token logger web meta using]
- styled_text 8.1.0 [flutter xmlstream]
- url_launcher 6.3.2 [flutter url_launcher_android url_launcher_ios url_launcher_linux url_launcher_macos url_launcher_platform_interface url_launcher_web url_launcher_windows]
- uuid 4.5.2 [crypto meta fixnum]
- visibility_detector 0.4.0+2 [flutter]
- web 1.1.1
- webview_flutter 4.13.0 [flutter webview_flutter_android webview_flutter_platform_interface webview_flutter_wkwebview]
- xml 6.6.1 [collection meta petitparser]
- youtube_player_iframe 5.2.2 [flutter meta webview_flutter webview_flutter_android webview_flutter_wkwebview url_launcher youtube_player_iframe_web]
dev dependencies:
- build_runner 2.5.2 [analyzer args async build build_config build_daemon build_resolvers build_runner_core code_builder collection crypto dart_style frontend_server_client glob graphs http http_multi_server io js logging meta mime package_config path pool pub_semver pubspec_parse shelf shelf_web_socket stack_trace stream_transform timing watcher web web_socket_channel yaml]
- flutter_launcher_icons 0.14.4 [args checked_yaml cli_util image json_annotation path yaml]
- flutter_lints 1.0.4 [lints]
- flutter_native_splash 2.4.6 [args flutter flutter_web_plugins html image meta path universal_io xml yaml ansicolor]
- flutter_test 0.0.0 [flutter test_api matcher path fake_async clock stack_trace vector_math leak_tracker_flutter_testing async boolean_selector characters collection leak_tracker leak_tracker_testing material_color_utilities meta source_span stream_channel string_scanner term_glyph vm_service]
- intl_translation 0.20.1 [analyzer args dart_style intl package_config path pub_semver]
- json_serializable 6.8.0 [analyzer async build build_config collection json_annotation meta path pub_semver pubspec_parse source_gen source_helper]
- mockito 5.4.4 [analyzer build code_builder collection dart_style matcher meta path source_gen test_api]
- squadron_builder 6.1.5 [squadron build source_gen analyzer meta]
dependency overrides:
- charts_flutter 0.12.0 [charts_common collection flutter intl logging meta]
- flutter_contact 0.9.1+7 [collection dartxx equatable flexidate flutter intl logging logging_config quiver uuid]
- flutter_keyboard_visibility 6.0.0 [meta flutter_keyboard_visibility_platform_interface flutter_keyboard_visibility_linux flutter_keyboard_visibility_macos flutter_keyboard_visibility_web flutter_keyboard_visibility_windows flutter]
- flutter_sticky_header 0.6.3 [flutter value_layout_builder]
- image_cropper 8.1.0 [flutter image_cropper_platform_interface image_cropper_for_web]
- intl 0.17.0 [clock path]
- open_mail_app 0.4.4 [platform url_launcher flutter]
- pdf 3.11.3 [archive barcode bidi crypto image meta path_parsing vector_math xml]
- printing 5.14.2 [ffi flutter flutter_web_plugins http image meta pdf pdf_widget_wrapper plugin_platform_interface web]
transitive dependencies:
- _fe_analyzer_shared 76.0.0 [meta]
- _flutterfire_internals 1.3.65 [collection firebase_core firebase_core_platform_interface flutter meta]
- _macros 0.3.3
- analyzer 6.11.0 [_fe_analyzer_shared collection convert crypto glob macros meta package_config path pub_semver source_span watcher yaml]
- ansicolor 2.0.3
- app_links_linux 1.0.3 [flutter app_links_platform_interface gtk]
- app_links_platform_interface 2.0.2 [flutter plugin_platform_interface]
- app_links_web 1.0.4 [flutter flutter_web_plugins app_links_platform_interface web]
- archive 4.0.7 [crypto path posix]
- args 2.7.0
- asn1lib 1.6.5
- barcode 2.2.9 [meta qr]
- base58check 2.0.0 [crypto collection]
- bech32 0.2.2 [convert]
- bidi 2.0.13
- boolean_selector 2.1.2 [source_span string_scanner]
- build 2.5.2 [analyzer async build_runner_core built_collection built_value convert crypto glob graphs logging meta package_config path pool]
- build_config 1.1.2 [checked_yaml json_annotation path pubspec_parse yaml]
- build_daemon 4.1.1 [built_collection built_value crypto http_multi_server logging path pool shelf shelf_web_socket stream_transform watcher web_socket_channel]
- build_resolvers 2.5.2 [analyzer async build build_runner_core collection convert crypto graphs logging package_config path pool pub_semver stream_transform]
- build_runner_core 9.1.0 [analyzer async build build_config build_resolvers build_runner built_collection built_value collection convert crypto glob graphs json_annotation logging meta package_config path pool timing watcher yaml]
- built_collection 5.1.1
- built_value 8.12.1 [built_collection collection fixnum meta]
- cached_network_image_platform_interface 4.1.1 [flutter flutter_cache_manager]
- cached_network_image_web 1.3.1 [cached_network_image_platform_interface flutter flutter_cache_manager web]
- camera_android_camerax 0.6.23+1 [async camera_platform_interface flutter meta stream_transform]
- camera_avfoundation 0.9.21+2 [camera_platform_interface flutter stream_transform]
- camera_platform_interface 2.12.0 [cross_file flutter plugin_platform_interface stream_transform]
- camera_web 0.3.5+2 [camera_platform_interface flutter flutter_web_plugins stream_transform web]
- cancelation_token 1.1.0
- characters 1.4.0
- charts_common 0.12.0 [collection intl logging meta vector_math]
- checked_yaml 2.0.4 [json_annotation source_span yaml]
- cli_util 0.4.2 [meta path]
- clock 1.1.2
- cloud_firestore_platform_interface 7.0.5 [_flutterfire_internals collection firebase_core flutter meta plugin_platform_interface]
- cloud_firestore_web 5.1.1 [_flutterfire_internals cloud_firestore_platform_interface collection firebase_core firebase_core_web flutter flutter_web_plugins]
- cloud_functions_platform_interface 5.8.8 [firebase_core flutter meta plugin_platform_interface]
- cloud_functions_web 5.1.1 [cloud_functions_platform_interface firebase_core firebase_core_web flutter flutter_web_plugins web]
- code_builder 4.11.1 [built_collection built_value collection matcher meta]
- connectivity_plus_platform_interface 2.0.1 [flutter meta plugin_platform_interface]
- convert 3.1.2 [typed_data]
- credit_card_type_detector 3.0.0
- cross_file 0.3.5+1 [meta web]
- csslib 1.0.2 [source_span]
- dart_style 2.3.8 [analyzer args collection package_config path pub_semver source_span]
- dartx 0.7.1 [characters collection crypto meta path time]
- dartxx 0.5.5 [equatable inflection3 intl recase]
- dartz 0.10.1
- dbus 0.7.11 [args ffi meta xml]
- device_info_plus_platform_interface 7.0.3 [flutter meta plugin_platform_interface]
- equatable 2.0.8 [collection meta]
- fake_async 1.3.3 [clock collection]
- ffi 2.1.4
- file 7.0.1 [meta path]
- file_selector_linux 0.9.4 [cross_file file_selector_platform_interface flutter]
- file_selector_macos 0.9.4+4 [cross_file file_selector_platform_interface flutter]
- file_selector_platform_interface 2.7.0 [cross_file flutter http plugin_platform_interface]
- file_selector_windows 0.9.3+5 [cross_file file_selector_platform_interface flutter]
- firebase_analytics_platform_interface 5.0.5 [_flutterfire_internals firebase_core flutter meta plugin_platform_interface]
- firebase_analytics_web 0.6.1+1 [_flutterfire_internals firebase_analytics_platform_interface firebase_core firebase_core_web flutter flutter_web_plugins]
- firebase_app_check_platform_interface 0.2.1+3 [_flutterfire_internals firebase_core flutter meta plugin_platform_interface]
- firebase_app_check_web 0.2.2+1 [_flutterfire_internals firebase_app_check_platform_interface firebase_core firebase_core_web flutter flutter_web_plugins web]
- firebase_auth_platform_interface 8.1.5 [_flutterfire_internals collection firebase_core flutter http meta plugin_platform_interface]
- firebase_auth_web 6.1.1 [firebase_auth_platform_interface firebase_core firebase_core_web flutter flutter_web_plugins http_parser meta web]
- firebase_core_platform_interface 6.0.2 [collection flutter flutter_test meta plugin_platform_interface]
- firebase_core_web 3.3.1 [firebase_core_platform_interface flutter flutter_web_plugins meta web]
- firebase_crashlytics_platform_interface 3.8.16 [_flutterfire_internals collection firebase_core flutter meta plugin_platform_interface]
- firebase_database_platform_interface 0.3.0+1 [_flutterfire_internals collection firebase_core flutter meta plugin_platform_interface]
- firebase_database_web 0.2.7+2 [collection firebase_core firebase_core_web firebase_database_platform_interface flutter flutter_web_plugins]
- firebase_in_app_messaging_platform_interface 0.2.5+16 [_flutterfire_internals firebase_core flutter meta plugin_platform_interface]
- firebase_messaging_platform_interface 4.7.5 [_flutterfire_internals firebase_core flutter meta plugin_platform_interface]
- firebase_messaging_web 4.1.1 [_flutterfire_internals firebase_core firebase_core_web firebase_messaging_platform_interface flutter flutter_web_plugins meta web]
- firebase_remote_config_platform_interface 2.0.6 [_flutterfire_internals firebase_core flutter meta plugin_platform_interface]
- firebase_remote_config_web 1.10.2 [_flutterfire_internals firebase_core firebase_core_web firebase_remote_config_platform_interface flutter flutter_web_plugins]
- firebase_storage_platform_interface 5.2.16 [_flutterfire_internals collection firebase_core flutter meta plugin_platform_interface]
- firebase_storage_web 3.11.1 [_flutterfire_internals async firebase_core firebase_core_web firebase_storage_platform_interface flutter flutter_web_plugins http meta web]
- fixnum 1.1.1
- flexidate 0.8.0+3 [collection dartx dartxx equatable inflection3 intl logging timezone]
- flutter_keyboard_visibility_linux 1.0.0 [flutter_keyboard_visibility_platform_interface flutter]
- flutter_keyboard_visibility_macos 1.0.0 [flutter_keyboard_visibility_platform_interface flutter]
- flutter_keyboard_visibility_platform_interface 2.0.0 [flutter meta plugin_platform_interface]
- flutter_keyboard_visibility_web 2.0.0 [flutter_keyboard_visibility_platform_interface flutter_web_plugins flutter]
- flutter_keyboard_visibility_windows 1.0.0 [flutter_keyboard_visibility_platform_interface flutter]
- flutter_local_notifications_linux 5.0.0 [dbus ffi flutter flutter_local_notifications_platform_interface path xdg_directories]
- flutter_local_notifications_platform_interface 8.0.0 [flutter plugin_platform_interface]
- flutter_plugin_android_lifecycle 2.0.31 [flutter]
- frontend_server_client 4.0.0 [async path]
- glob 2.1.3 [async collection file path string_scanner]
- graphs 2.3.2 [collection]
- gtk 2.1.0 [ffi flutter meta]
- html 0.15.6 [csslib source_span]
- http_multi_server 3.2.2 [async]
- http_parser 4.1.2 [collection source_span string_scanner typed_data]
- image_cropper_for_web 6.0.2 [flutter flutter_web_plugins image_cropper_platform_interface web]
- image_cropper_platform_interface 7.1.0 [flutter plugin_platform_interface http]
- image_picker_android 0.8.13+1 [flutter flutter_plugin_android_lifecycle image_picker_platform_interface]
- image_picker_for_web 3.1.1 [flutter flutter_web_plugins image_picker_platform_interface mime web]
- image_picker_ios 0.8.13 [flutter image_picker_platform_interface]
- image_picker_linux 0.2.2 [file_selector_linux file_selector_platform_interface flutter image_picker_platform_interface]
- image_picker_macos 0.2.2 [file_selector_macos file_selector_platform_interface flutter image_picker_platform_interface]
- image_picker_platform_interface 2.11.1 [cross_file flutter http plugin_platform_interface]
- image_picker_windows 0.2.2 [file_selector_platform_interface file_selector_windows flutter image_picker_platform_interface]
- in_app_purchase_android 0.4.0+5 [collection flutter in_app_purchase_platform_interface]
- in_app_purchase_platform_interface 1.4.0 [flutter plugin_platform_interface]
- in_app_purchase_storekit 0.3.22+1 [collection flutter in_app_purchase_platform_interface json_annotation]
- in_app_review_platform_interface 2.0.5 [flutter url_launcher plugin_platform_interface platform]
- infinite_listview 1.1.0 [flutter]
- inflection3 0.5.3+2
- intercom_flutter_platform_interface 2.0.6 [flutter plugin_platform_interface]
- intercom_flutter_web 1.1.11 [flutter flutter_web_plugins intercom_flutter_platform_interface uuid web]
- io 1.0.5 [meta path string_scanner]
- js 0.6.7 [meta]
- leak_tracker 10.0.9 [clock collection meta path vm_service]
- leak_tracker_flutter_testing 3.0.9 [flutter leak_tracker leak_tracker_testing matcher meta]
- leak_tracker_testing 3.0.1 [leak_tracker matcher meta]
- lints 1.0.1
- logger 2.6.2 [meta]
- logging 1.3.0
- logging_config 0.6.7+7 [js logging]
- macros 0.1.3-main.0 [_macros]
- matcher 0.12.17 [async meta stack_trace term_glyph test_api]
- material_color_utilities 0.11.1 [collection]
- meta 1.16.0
- nested 1.0.0 [flutter]
- nm 0.5.0 [dbus]
- octo_image 2.1.0 [flutter]
- package_config 2.2.0 [path]
- package_info_plus_platform_interface 3.2.1 [flutter meta plugin_platform_interface]
- path 1.9.1
- path_parsing 1.1.0 [meta vector_math]
- path_provider_android 2.2.19 [flutter path_provider_platform_interface]
- path_provider_foundation 2.4.2 [flutter path_provider_platform_interface]
- path_provider_linux 2.2.1 [ffi flutter path path_provider_platform_interface xdg_directories]
- path_provider_platform_interface 2.1.2 [flutter platform plugin_platform_interface]
- path_provider_windows 2.3.0 [ffi flutter path path_provider_platform_interface]
- pdf_widget_wrapper 1.0.4 [flutter pdf]
- permission_handler_android 13.0.1 [flutter permission_handler_platform_interface]
- permission_handler_apple 9.4.7 [flutter permission_handler_platform_interface]
- permission_handler_html 0.1.3+5 [flutter flutter_web_plugins permission_handler_platform_interface web]
- permission_handler_platform_interface 4.3.0 [flutter meta plugin_platform_interface]
- permission_handler_windows 0.2.1 [flutter permission_handler_platform_interface]
- petitparser 7.0.1 [meta collection]
- platform 3.1.6
- plugin_platform_interface 2.1.8 [meta]
- pointycastle 3.9.1 [collection convert js]
- pool 1.5.2 [async stack_trace]
- posix 6.0.3 [ffi meta path]
- pub_semver 2.2.0 [collection]
- pubspec_parse 1.5.0 [checked_yaml collection json_annotation pub_semver yaml]
- qr 3.0.2 [meta]
- quiver 3.2.2 [matcher]
- recase 4.1.0
- share_plus_platform_interface 6.1.0 [cross_file flutter meta mime plugin_platform_interface path_provider uuid]
- shared_preferences_android 2.4.13 [flutter shared_preferences_platform_interface]
- shared_preferences_foundation 2.5.4 [flutter shared_preferences_platform_interface]
- shared_preferences_linux 2.4.1 [file flutter path path_provider_linux path_provider_platform_interface shared_preferences_platform_interface]
- shared_preferences_platform_interface 2.4.1 [flutter plugin_platform_interface]
- shared_preferences_web 2.4.3 [flutter flutter_web_plugins shared_preferences_platform_interface web]
- shared_preferences_windows 2.4.1 [file flutter path path_provider_platform_interface path_provider_windows shared_preferences_platform_interface]
- shelf 1.4.2 [async collection http_parser path stack_trace stream_channel]
- shelf_web_socket 3.0.0 [shelf stream_channel web_socket_channel]
- sky_engine 0.0.0
- source_gen 1.5.0 [analyzer async build dart_style glob path source_span yaml]
- source_helper 1.3.5 [analyzer collection source_gen]
- source_span 1.10.1 [collection path term_glyph]
- sqflite_android 2.4.1 [flutter sqflite_common path sqflite_platform_interface]
- sqflite_common 2.5.6 [synchronized path meta]
- sqflite_darwin 2.4.2 [flutter sqflite_platform_interface meta sqflite_common path]
- sqflite_platform_interface 2.4.0 [flutter platform sqflite_common plugin_platform_interface meta]
- stack_trace 1.12.1 [path]
- stream_channel 2.1.4 [async]
- stream_transform 2.1.1
- string_scanner 1.4.1 [source_span]
- synchronized 3.4.0
- term_glyph 1.2.2
- test_api 0.7.4 [async boolean_selector collection meta source_span stack_trace stream_channel string_scanner term_glyph]
- time 2.1.6 [clock]
- timezone 0.9.4 [path]
- timing 1.0.2 [json_annotation]
- typed_data 1.4.0 [collection]
- universal_io 2.3.1 [collection meta typed_data]
- url_launcher_android 6.3.20 [flutter url_launcher_platform_interface]
- url_launcher_ios 6.3.4 [flutter url_launcher_platform_interface]
- url_launcher_linux 3.2.2 [flutter url_launcher_platform_interface]
- url_launcher_macos 3.2.3 [flutter url_launcher_platform_interface]
- url_launcher_platform_interface 2.3.2 [flutter plugin_platform_interface]
- url_launcher_web 2.4.1 [flutter flutter_web_plugins url_launcher_platform_interface web]
- url_launcher_windows 3.1.5 [flutter url_launcher_platform_interface]
- using 1.0.5 [meta]
- value_layout_builder 0.5.0 [flutter]
- vector_graphics 1.1.19 [flutter http vector_graphics_codec]
- vector_graphics_codec 1.1.13
- vector_graphics_compiler 1.1.19 [args meta path path_parsing vector_graphics_codec xml]
- vector_math 2.1.4
- vm_service 15.0.0
- watcher 1.2.0 [async path]
- web_socket 1.0.1 [web]
- web_socket_channel 3.0.3 [async crypto stream_channel web web_socket]
- webview_flutter_android 4.10.1 [flutter meta webview_flutter_platform_interface]
- webview_flutter_platform_interface 2.14.0 [flutter meta plugin_platform_interface]
- webview_flutter_wkwebview 3.23.0 [flutter meta path webview_flutter_platform_interface]
- win32 5.15.0 [ffi]
- win32_registry 2.1.0 [ffi meta win32]
- xdg_directories 1.1.0 [meta path]
- xml2json 6.2.7 [xml]
- xmlstream 1.1.1
- yaml 3.1.3 [collection source_span string_scanner]
- youtube_player_iframe_web 3.1.2 [flutter flutter_web_plugins web webview_flutter_platform_interface]
Additional context and comments
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Needs AttentionThis issue needs maintainer attention.This issue needs maintainer attention.platform: androidIssues / PRs which are specifically for Android.Issues / PRs which are specifically for Android.plugin: databasetype: bugSomething isn't workingSomething isn't working