In an application I have made, there are some device-specific native libraries -- for example, there is one library for Snapdragon-based devices, another separate library for Tegra-based devices, and yet another for generic implementations (if no platform optimizations are available).
These libraries can get pretty big due to some specific optimization tradeoffs we made (and because there's debug symbols in the libraries). What's the strategy to have Eclipse only bundle one of the libraries into the resulting APK, depending on what target is being deployed for? For example, if I deploy onto my phone, it should deploy only the Snapdragon variant, but if I deploy onto the tablet, maybe it deploys only the Tegra variant. This would speed up development a lot!
Thanks!