H5 container positioning offset solution

更新时间:
复制 MD 格式

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;

    .......
    
}