Home
last modified time | relevance | path

Searched refs:errorJson (Results 1 – 2 of 2) sorted by relevance

/expo/android/expoview/src/main/java/host/exp/exponent/
H A DExpoUpdatesAppLoader.kt221 val errorJson = JSONObject(e.message!!) in startLoaderTask() constant
222 exception = ManifestException(e, manifestUrl, errorJson) in startLoaderTask()
457 val errorJson = JSONObject() in formatExceptionForIncompatibleSdk() constant
459 errorJson.put("message", "Invalid SDK version") in formatExceptionForIncompatibleSdk()
461 errorJson.put("errorCode", "NO_SDK_VERSION_SPECIFIED") in formatExceptionForIncompatibleSdk()
463 errorJson.put("errorCode", "EXPERIENCE_SDK_VERSION_TOO_NEW") in formatExceptionForIncompatibleSdk()
465 errorJson.put("errorCode", "EXPERIENCE_SDK_VERSION_OUTDATED") in formatExceptionForIncompatibleSdk()
466 errorJson.put( in formatExceptionForIncompatibleSdk()
477 return ManifestException(Exception("Incompatible SDK version"), manifestUrl, errorJson) in formatExceptionForIncompatibleSdk()
/expo/ios/Exponent/Kernel/AppLoader/
H A DEXAppLoaderExpoUpdates.m266 …id errorJson = [NSJSONSerialization JSONObjectWithData:[error.localizedDescription dataUsingEncodi…
267 if (errorJson && [errorJson isKindOfClass:[NSDictionary class]]) {
269 …rce formatError:[NSError errorWithDomain:EXNetworkErrorDomain code:error.code userInfo:errorJson]];