Where can i find more information on how kotlin an...
# android
a
Where can i find more information on how kotlin android synthetic extensions are generated? I'm able to see the final bytecode that is generated ( a call to a synthetic property basically calls the
findCachedViewById
extension functions that ultimately calls findViewById or relies on a local hashmap) , but i was more curious about how the synthetic properties get generated when creating new layout XMLs..