Initially assigning to Steve for Android implementation. iOS code will contain the following:
urlExtra = [urlExtra stringByAppendingString:@"&!v="];
urlExtra = [urlExtra stringByAppendingString:
[[[NSBundle mainBundle]
objectForInfoDictionaryKey:@"CFBundleShortVersionString"]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
Which will include a !v=1.0.4 in the response to the browser. The JSON64 implementation does not have such aggressive space optimization and will use
{version:"1.0.3"}
as a return parameter.
Initially assigning to Steve for Android implementation. iOS code will contain the following:
urlExtra = [urlExtra stringByAppendingString:@"&!v="];
urlExtra = [urlExtra stringByAppendingString:
[[[NSBundle mainBundle]
objectForInfoDictionaryKey:@"CFBundleShortVersionString"]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
Which will include a !v=1.0.4 in the response to the browser. The JSON64 implementation does not have such aggressive space optimization and will use
{version:"1.0.3"}as a return parameter.