Can Android libraries made with kotlin be used in ...
# android
c
Can Android libraries made with kotlin be used in Java projects? And do things like extension functions carry through in your kotlin projects using the library?
g
Sure, they can. Just as example see okio 2.0: https://medium.com/square-corner-blog/okio-2-6f6c35149525 Extension functions will be available as static methods, same for Java code in your own project