Hey, I am using bunch of experimental Apis in my j...
# compose
r
Hey, I am using bunch of experimental Apis in my jetpack compose App e.g; Accompanist Permissions library and now I’m close to production launch. Should I replace these experimental Apis with some other workaround before the launch or is it fine ?
c
It's fine. Those API may change in the future, but they're things which you are bundling into your app, so nothing will break break or anything. It just means that you may need to refactor if the APIs change later.
r
Thank you Chris!