Pas de Code
76 subscribers
106 photos
1 file
402 links
What I cannot create, I do not understand.

DM: @alexey_mileev
Original channel in RU: @devballet
Twitter: twitter.com/pasdecode_
Download Telegram
Looks like something dedicated to initialization of different components / libraries is coming to AndroidX.

#androidx #library
Android 11 Developer Preview is now available. What a surprise! :)
The most interesting updates are dedicated section for conversations in the notifications shade and single session permissions. The link sent by @Remych04

#google #android #preview
Looks like we'll be able to handle keyboard visibility via Insets more casually. And a bit more on that on Twitter.

#android #insets #keyboard
Good one: this document describes which languages Fuchsia supports. Short summary:
- C - platform βœ…, end-developers βœ…
- C++ - platform βœ…, end-developers βœ…
- Dart - platform βœ…, end-developers βœ…
- Rust - platform βœ…, end-developers ❌
- Go - platform ❌, end-developers ❌
- Python - platform βœ…, end-developers ❌
 
#fuchsia #google #language
@MightySeal shared an interesting link: looks like a much more convenient and typesafe wrapper for the whole startActivityForResult thing is coming soon.
 
#activity #google
Check out this JEP. They propose to enhance instanceof so it can be used like this:
if (obj instanceof String s) {
    // can use s here
} else {
    // can't use s here
}

 
#java #jep #instanceof
Records (kind of data classes for Java) continue to evolve and it's great! JEP 384 is a second iteration based on the first preview feedback.
 
#java #records #jep