Hi! I try to reduce app size by using proguard.
So I set proguardLevel ‘all’ and add my android proguard rules as appendCfgFile
tasks.withType(org.moe.gradle.tasks.ProGuard) {
task ->
task.appendCfgFile = file("${rootDir}/../android/proguard-debug.cfg")
}
Build and deploy works well, but I see just black screen on my device. I don’t see any errors or exceptions in logs. How can I investigate where is a problem?