I was just considering this (hence the Google search that brought me here). My search hasn't yielded and frameworks.
If you know before you launch what you'd like to test, it's pretty simple (in theory). Phone home when you start up and ask if the app should show A or B (and send along which cohort the user was in when you send results).
More likely, the app has been out for a week, and now you want to start testing variations. You could upload a new version, and that's not a terrible idea. But if you're not willing to restrict yourself to people who update your app, it seems you CAN download classes from the web and load them dynamically:
http://developer.android.com/reference/dalvik/system/DexFile.html
http://developer.android.com/reference/dalvik/system/DexClassLoader.html
Of course, you'll need to know what to do with the class you downloaded. I would guess your app would phone home for updates, and then download both a dex file and a description file that says which class it should replace.
I haven't tried this myself. Whatever you do with this, I have a feeling it will not be straightforward.