H5 container positioning offset solution

Updated at:

If you encounter H5 container positioning offset when using mPaaS containers, add the following code to skip LBS positioning:

- (void)application:(UIApplication *)application beforeDidFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    // Skip LBS targeting
    [LBSmPaaSAdaptor sharedInstance].shouldSkipLBSLocation = YES;

    .......
    
}