I'm fresh out of college, working on developing Android apps for quite sometime. My boss has asked me to develop A/B testing for mobile native apps. I've been exploring the various A/B testing tools. I really like Apptimize implementation.. By inserting a small piece of code, any one can make live changes using a visual WYSIWYG editor without even updating the app or do any coding.
Here is a scenario,
I have three buttons in my app.. Once Apptimize SDK is installed in the app, it loads the app in the desktop web browser. I can change the color/text or make any other changes using WYSIWYG editor. Once the changes are done, it goes live instantly in the app as well.
I would like to clarify the following,
How the UI of the app is loaded in the Desktop web browser? Do we need to parse the xml of Android to load the UI? or is there any protocol available?
I guess that once the changes are done in Desktop it will be saved in server.. And when the app loads, the changes are fetched from the server through JSON format. But how the changes are applied in the app?
Since I have only one year experience in Android, it would be great if someone could throw light on this. Any tutorials to get this done would be really helpful.. or any other pointers?
P.S: I had a look at Switchboard but i'm not sure if I understood it clearly.