I’m sorry it’s not about Kotlin, but I have a ques...
# android
u
I’m sorry it’s not about Kotlin, but I have a question We are using r8 for code optimization, obfuscation, etc Usually, when it’s a release build, you add an option like isMinifyEnabled=true Currently I’m a multi-module project, should I set this option on the sub-feature modules, not the app modules? If I don’t add this option in the subfeature module, will the advantages of r8 be optimised, obfuscated, etc. not apply? In the process of updating to agp 8.4.0, there are a lot of r8 build errors in the library module, so I’m curious about it
not kotlin but kotlin colored 2
The sub-feature module is an Android dependency module that is used only within one project and is not used by external projects by extracting it separately Each feature module has its own proguard settings, so this proguard must be applied in the same way
c
Image from iOS.jpg