I have an Android Library with an Abstract class containing private, protected, and public properties/methods.
When building it with minifyEnabled true, all properties and methods are made public.
Changing minifyEnabled to false, though, it preserves the original privacy status of each member.
Does anyone know why this is and how it can be avoided?