Manoel Aranda Neto
Manoel Aranda Neto
> probably `idleTimeout` can also be moved to AndroidOptions since it's kind of a UI-relevant thing - backend probably won't ever need it Java desktop apps would use it, so...
@vaind I left a comment, is there anything pending or ready to merge?
Get feedback from the Mobile team if this is a known security analyzer and doable doing it.
That is gonna force people using newer versions of AGP, that could be a problem for a portion of Android users, but the majority of the problem would come from...
https://developer.android.com/studio/releases/gradle-plugin#cpp-references
That makes sense, right now we do report the total and used size of the internal storage and external storage, but not in detail as requested.
@wzieba thanks for raising this, it was public previously, now it's been private due to other concerns, I'm not entirely sure if we'd like to do that, @bruno-garcia opinions? there...
people could always do `getExtra(x)`, `removeExtra(x)`or `setExtras(null)`, `setExtra(x, y)`, so if they know what they want to add/delete, its pretty much possible with the current public methods
@bruno-garcia that was not the reason, but because the public API have `setWhatever(x, y)` and `removeWhatever(x)`, this is not only about Extra but also for Tags etc. I was all...
we made package-private because our public API already exposes a setter with key/value and a remove method with key, for every Map, so we don't expose the field with a...