You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the Flutter SDK sometimes some user a get a io error with a HTTP 500 Repsonse but their have a internation Connection. The Method: qonversion_internal.dart in QonversionInternal.remoteConfig
and get the following Error:
PlatformException: PlatformException(NetworkConnectionFailed, There was a network issue. Please make sure that the Internet connection is available on the device, Unable to resolve host "api.qonversion.io": No address associated with hostname, null)
or PlatformException: PlatformException(-1009, Es besteht anscheinend keine Verbindung zum Internet., Qonversion Error Code: -1009, null)
I think the users have an Internet connection, otherwise they couldn't send the Sentry Crash Report.
I am using the newest Qonversion Flutter SDK
classRemoteConfigNotiferextendsStateNotifier<QRemoteConfig?> {
RemoteConfigNotifer() :super(null);
voidloadRemoteConfig() async {
final remoteConfig =awaitQonversion.getSharedInstance().remoteConfig();
state = remoteConfig;
gRemoteConfig = remoteConfig;
}
}
final remoteConfigProvider =StateNotifierProvider<RemoteConfigNotifer, QRemoteConfig?>(
(ref) =>RemoteConfigNotifer(),
);
The text was updated successfully, but these errors were encountered:
Hi, @FantaMagier
NetworkConnectionFailed error is our wrapper above Android OS and Google Billing errors that indicate problems with the internet connection. I mean, we have no additional logic there; we just proxy the internet connection error from the system.
With the Flutter SDK sometimes some user a get a io error with a HTTP 500 Repsonse but their have a internation Connection. The Method: qonversion_internal.dart in QonversionInternal.remoteConfig
and get the following Error:
PlatformException: PlatformException(NetworkConnectionFailed, There was a network issue. Please make sure that the Internet connection is available on the device, Unable to resolve host "api.qonversion.io": No address associated with hostname, null)
or PlatformException: PlatformException(-1009, Es besteht anscheinend keine Verbindung zum Internet., Qonversion Error Code: -1009, null)
I think the users have an Internet connection, otherwise they couldn't send the Sentry Crash Report.
I am using the newest Qonversion Flutter SDK
The text was updated successfully, but these errors were encountered: