i want to disable proguard completly but i cant find a way to disable it setting minify enable to false has no effect
buildTypes {
getByName("release") {
isMinifyEnabled = false
isCrunchPngs = false
//proguardFiles(
// getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
//)
signingConfig = signingConfigs.getByName("release")
}
}
i tried to disable R8 in gradle properties but its not possible to use it in AGP 7+ and useProguard = false is also the same
after a lof searching i found out that you have to also disable
isShrinkResources = false