Taku SDK error codes and FAQ guide, please refer to:
| System Platform | Description |
|---|---|
| Taku Android SDK | View |
| Taku iOS SDK | View |
Q: When running pod install to install third-party library dependencies, the error shown in the image appears. How to resolve it?

A: From the blue underlined section, we can see that this error is caused by an exception in linking static libraries. Add s.static_framework = true in our downloaded resource file anythink_sdk.podspec as shown in the image.

Q: How to use the simulator to run and load ads?
A: Under normal circumstances, we do not recommend using the simulator to load ads, because the ad fill rate will be lower. If you really need to use it, we recommend using CocoaPods for integration and then adding the following code configuration in the Podfile of the Xcode project:
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end

Use pod install to re-update the dependency library, then configure arm64 in TARGET —— Build Settings —— Excluded Architectures.

After completing the above steps, you can try running with the simulator. If you have other questions, please contact us.