Tobias T
Tobias T
Even your export code above does not work reliably, because databases consist of more than one file (at least from Android Pie onwards, which enabled write-ahead logging by default). You'll...
My understanding is that the "correct" way to generate .class files with JDK 9 javac that can be run under JDK 8 java is to not only pass -target 1.8,...
Or, more simply, you could use: --release 8 instead of -source 1.8 -target 1.8 --bootclasspath=... See http://openjdk.java.net/jeps/247
> But make sure you upgrade to the latest version of Glance v2.1.114 Is that version actually available on Fitbit yet? The [link you provided](https://gallery.fitbit.com/details/7b5d9822-7e8e-41f9-a2a7-e823548c001c) [elsewhere](https://github.com/Rytiggy/Glance/issues/140) goes to Fitbit, but...
Re this bug's title "Segment pool should be thread local", wouldn't a ThreadLocal mean that you'd effectively leak memory because all kinds of long running threads might indefinitely hold on...
@bendb-instacart that suggests that a quick/hacky fix has been implemented, but note that that approach has downsides (specifically that each thread that makes a network connection holds on to 64...