I have a project with multiple configurations and the use of conditional symbols give me everything I need except in one area. Some of the configurations require different libraries to other configurations. And some of those libraries add several megabytes to the size of the apk even when they are not used by the particular configuration.
So, is it possible to have the inclusion of a library tied to a configuration? Or, alternatively, have the compiler only include a library if the compiler detects that the library is required?
So, is it possible to have the inclusion of a library tied to a configuration? Or, alternatively, have the compiler only include a library if the compiler detects that the library is required?