if I compile my library with k2, would it be compa...
# k2-adopters
x
if I compile my library with k2, would it be compatible with my app that is not using k2?
d
By default it wouldn't At this moment binaries produced by K2 are marked as unstable, because we didn't ensure that ABI from K2 is the same as for K1 in all cases yet But you can allow your app to consume unstable binaries with
-Xskip-prerelease-check
compiler flag (and maybe
-Xskip-metadata-version-check
is also required, I don't remember exactly)