Troubleshooting
Troubleshooting
Having trouble with our SDKs? This guide covers common issues and solutions. Go through each topic and see if it matches your issue. If you went through this guide and you're still having problems, reach out to us in any of the following channels:
Using the Intercom Messenger
Send an email to team@unflow.com
All SDKs
Make sure that you're using the latest version of the Unflow SDK, and have installed the SDK according to our guides. We update our SDKs very often. If you run into an issue with our SDK, it might already have been fixed in an update.
You can find the latest version of our SDKs here:
Issues when compiling or archiving
iOS
Clean derived data: in Xcode, go to Product -> Clean Build Data.
Make sure Swift support is enabled in the project: Check that Swift Language Version is defined as at least "Swift 5" in Build Settings for your target.
Make sure that the deployment target is set correctly: it should be set to 11.0 or newer.
If you're using CocoaPods:
Make sure you're using the latest version of CocoaPods. You can see your version by running
pod --version
, and find the latest version here.Re-install pods: run
pod deintegrate
and thenpod install
, then try running / archiving the project again.Make sure that the deployment target is set correctly: it should be set to 11.0 or newer. The requirements might be higher if you're using other frameworks, such as React Native. You should check this value both in the
Podfile
, and by going into the Project settings, then select the target, and look for the value in the general tab.Check the Swift version: Check that the value for
SWIFT_VERSION
isn't overridden by the Podfile.Enable Swift support: If you're getting errors when compiling Swift files after this, try adding a single, empty Swift file to the project.
Android
Make sure your app meets the Minimum requirements for the
minimumSdkVersion
andcompileSdkVersion
Ensure the activity in your manifest file has the
android:exported
flag set totrue