- hello guys .... is ther anyway to have more than...
# multiplatform
a
• hello guys .... is ther anyway to have more than one Res class in multi module KMP project ?
d
Yes - you need to specify a different resource class package in the Gradle extension for each module. Import aliasing is then useful e.g:
Copy code
import com.acme.design.Res as DesignRes
import com.acme.app.Res as AppRes
☝️ 1