Documentation Index
Fetch the complete documentation index at: https://docs.roycewilliams.xyz/llms.txt
Use this file to discover all available pages before exploring further.
What are “fallbacks”?
The Helium SDK does its best to fetch the latest paywalls to display in your app. But if for some reason a paywall is not available — perhaps if an app user temporarily did not have a data connection — Helium will attempt to show a “fallback”. You can download copies of your actual Helium paywalls and include that in your app to use in the rare case that a Helium paywall is not ready for display.Download Fallbacks
Go to the Workflows page in your dashboard and find the Download Fallbacks button:
This will open a dialog and allow you to select which paywall/s to use as fallback. Most of the time you only need to set Default Fallbacks.
After selection, click Download and your browser should download a file named helium-fallbacks.json.
Add fallbacks to your Helium SDK integration
- iOS
- Android
- React Native
- Flutter
- Integrate the SDK with the iOS Quickstart if you haven’t done so already.
- Drag your downloaded file into the Project navigator of your Xcode project.
- You should see a dialog with Action and Targets fields. For Action, select your preference between the move and copy options. For Targets ensure that your app’s main target is selected.
- That’s it! The SDK automatically detects any file with the name
helium-fallbacks.json.
Testing Fallbacks
Look at your debug log output when running a debug build of your app to see if fallbacks are successfully loaded. To see a fallback paywall, you can run your app in airplane mode or use a non-existent trigger when presenting a paywall.How to Monitor and Minimize Fallback Rate
You can check your app’s fallback rate by going to your Metrics page and clicking on the “Fallback Rate” tab under Monitoring. This rate shows the percentage of paywall opens that use a fallback paywall. If you notice your fallback rate is higher than expected, here are some tips on minimizing it:- Move your initialize() call earlier in your app’s lifecycle. We recommend doing so right when your app is launched.
- Set a higher loading budget. If your paywall is still downloading when presented, Helium will show a loading state. The default loading budget of 7 seconds is generally plenty of time to ensure your paywall will show before fallback is used. But if you have overridden the budget to be a lower value, consider increasing it.
- Reduce the size of image assets in your paywall. We recommend keeping each paywall to be under about 3-5 MB in total size. If you’re adding high resolution imagery to your paywall (which is fine!) we recommend converting images to .webp format - e.g. with an online converter like https://cloudconvert.com/webp-converter.
Fallback Causes
Paywall is still downloading
This is the most common reason.