Created
July 8, 2010 15:18
-
-
Save dasher/468139 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module developer creates a module | |
They wish to create a single module but have enhanced API functionality for 2.1+ because they depend on some API features only available on that platform. The API they are using also may have changed between platform versions (think Android contacts). | |
For users of the 1.6 module - they will have reduced functionality but broader reach. | |
Option (1) | |
They release 2 differently named modules and the module consumer has to download/buy both | |
Option (2) | |
Use a folder structure for modules that differentiate based on platform. | |
It's up to the module consumer to pick one and for the target platform to trickle up the build tree. ie if they want 2.1 func - then their target userbase are 2.1+ users | |
\super-sexy-alerts | |
\0.1 | |
\target-1.6 | |
meta-data.xml | |
myPackage.jar | |
\target-2.1 | |
meta-data.xml | |
myPackage.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment