I have an android app which is using Room library. I am not using @ColumnInfo. I built the release version of app with R8 without any pro guard rules for Room. My app works fine and db operations are working fine in release apk.
my question are:
- Does the room library comes with in built pro guard rules?
- I have seen many articles where they say that we have to manually add rules for entity and db classes, do we have to?
- If library doesn't come with rules then how come my app is not crashing anywhere?
- Is there any good resource where I can find pro-guard rules for libraries?