01/10/2025 10:53:00
Problem description
Some QQ iOS 16 models occasionally have no callback after completing authorization and returning to the game
Causes of the problem
The game side does not add two scheme
values, that is, mqqopensdknopasteboard and mqqopensdknopasteboardios16, in info.plist. The game cannot get data from the clipboard so there is no callback returned to the game.
Note: iOS 16 is not configured with the above scheme
and will use the clipboard to transfer data.
Solution
Add the LSApplicationQueriesSchemes
configuration in info.plist, as follows:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>mqqopensdknopasteboard</string>
<string>mqqopensdknopasteboardios16</string>
</array>
Note: It is recommended that the above LSApplicationQueriesSchemes be configured within the top 50. For details, please refer to: iOS Developer Documentation
Copyright © 2025 MSDK.
All rights reserved.
All rights reserved.