You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello. different flavors exist only on android, so you cant use this feature in multiplatform module.
but i think you can reimplement it with different gradle modules.
shared-flavor-1, shared-flavor-2 declare api dependency to shared
android-app can be configured with android build-flavors and declare dependency like:
flavor1Implementation(shared-flavor-1)
flavor2Implementation(shared-flavor-2)
implementation(shared)
in ios-app you can use separated targets - flavor1App, flavor2App. that will use two different frameworks - from shared-flavor-1 and shared-flavor-2.
in code you should use dependency inversion to provide flavor-specific resources from shared-flavor-1/shared-flavor-2 to shared
it's not so simple as with android flavors, but in this case you have quarantee that used resources really exist in specific build variant
Hi, I'm developing a new Compose app with multiple flavors, and each flavor may require different values for strings, images, or assets.
How can I manage this using Moko-Resources?
The text was updated successfully, but these errors were encountered: