The fact is that in my project there are several text files, the name of which are proguard-rules (for the application itself and the library). In the gradle file
buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } Does this mean that proguard is enabled and what is its function here?