Notifications images not appearing.
https
protocols (http
URLs do not work for most apps as iOS and Android require all network requests to be https
by default)setLogLevel
method with WARN
or VERBOSE
logging, you can see the specific errors related to image downloading, such as:
Could not download image!
Encountered an error while attempting to download file with URL:
OneSignal encountered an exception while downloading file
.png
or .jpg
Example:
https://pixabay.com/en/architecture-travel-sky-building-3095716/
https://cdn.pixabay.com/photo/2018/01/21/01/46/architecture-3095716_960_720.jpg
NSAppTransportSecurity
to NSAllowsArbitraryLoads
in your Xcode .plist.NSAllowsArbitraryLoads
enabled when releasing your app to the App Store, as this can create a security vulnerability in your app. For more information, please read Apple’s Security OverviewDeployment Target
, and set it to iOS 10.