Saved searches
Use saved searches to filter your results more quickly
Cancel Create saved search
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.
flutter / flutter Public
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FileSystemException: Cannot open file, path = ‘C:\Users\hp\AppData\Local\Temp\flutter_tool.7c451adf-dbda-11ea-884e-c4651690b32e\app.dill’ (OS Error: Access is denied. , errno = 5) #63484
chaitanya642000 opened this issue Aug 11, 2020 · 9 comments
FileSystemException: Cannot open file, path = ‘C:\Users\hp\AppData\Local\Temp\flutter_tool.7c451adf-dbda-11ea-884e-c4651690b32e\app.dill’ (OS Error: Access is denied. , errno = 5) #63484
chaitanya642000 opened this issue Aug 11, 2020 · 9 comments
in triage Presently being triaged by the triage team
Comments
chaitanya642000 commented Aug 11, 2020

I was runnig my flutter app on my device from cmd , but suddenly these error poped up. I didn’t face these issue initially. I search it on internet and I found that it might be due permission issues, so I took full ownership over my fluuter installation folder. I also restarted my PC but it was of no use. Here is the screen shot of error and flutter doctor command.

The text was updated successfully, but these errors were encountered:
TahaTesser added in triage Presently being triaged by the triage team waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds labels Aug 11, 2020
no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Aug 11, 2020
Unhandled Exception: FileSystemException: Cannot open file, path . (OS Error: No such file or directory, errno = 2)
I’m trying to download *.xlsx file using dio.download, and it’s throwing the errors: Unhandled Exception: FileSystemException: Cannot open file, path = ‘/storage/emulated/0/Android/data/com.example.foodagator_app/files/file.xlsx’ (OS Error: No such file or directory, errno = 2) Another one error from try/catch block: FileSystemException: Creation failed, path = ‘File: » (OS Error: Read-only file system, errno = 30) I wrote the permission in androidmanifest for external storage, and also tried temporary directory, but it’s not working. Can anyone help me with this? Here is my code
void download() async < var tempDir = await getExternalStorageDirectory(); File file = File(tempDir!.path + '/file.xlsx'); try < Response response = await dio.download( url, file, options: Options( responseType: ResponseType.bytes, followRedirects: false, ), ); var raf = file.openSync(mode: FileMode.write); // response.data is Listtype raf.writeFromSync(response.data); await raf.close(); > catch (e) < print('Error is: $e'); >> void readFile() async < var tempDir = await getExternalStorageDirectory(); var filePath = tempDir!.path + "/file.xlsx"; var bytes = File(filePath).readAsBytesSync(); var decoder = SpreadsheetDecoder.decodeBytes(bytes, update: true); for (var table in decoder.tables.keys) < print(table); print(decoder.tables[table]!.maxCols); print(decoder.tables[table]!.maxRows); for (var row in decoder.tables[table]!.rows) < print('$row'); >> >
asked May 24, 2022 at 7:10
Artur Uvarov Artur Uvarov
85 1 1 gold badge 1 1 silver badge 10 10 bronze badges
5 Answers 5
This error is getting because there is no file named file.xlsx you can check if file exists or not
if(file.existsSync())
if file does not exist, you can create one using,
new File('$path/file.xlsx').create(recursive: true);
Saved searches
Use saved searches to filter your results more quickly
Cancel Create saved search
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.
isar / isar Public
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
32-bit devices: Unhandled Exception: IsarError: Cannot open Environment #187
zexross opened this issue Jan 14, 2022 · 67 comments
32-bit devices: Unhandled Exception: IsarError: Cannot open Environment #187
zexross opened this issue Jan 14, 2022 · 67 comments
bug Something isn’t working
Comments
zexross commented Jan 14, 2022
Steps to Reproduce
Got an exception when trying to run isar.open
E/flutter ( 7883): [ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: IsarError: Cannot open Environment E/flutter ( 7883):
Code sample
var dbPath = (await getApplicationDocumentsDirectory()).path; final isar = await Isar.open( schemas: [dbSchema], directory: dbPath, );
Version
- Platform: Android 11
- Flutter version: 2.8.1
- Isar version: 2.0.0-dev.0
- Isar Generator version: 2.0.0-dev.0
The text was updated successfully, but these errors were encountered:
zexross commented Jan 14, 2022
@leisim Thank you for the quick response:)
Yeah! I think so.
I took the path from (await getApplicationDocumentsDirectory()).path . And confirmed if the directory exists by printing the dir variable shown below:
bool dir = await Directory(databasePath).exists(); print('dir: $dir');
On printing dbpath in the code sample provided. I received the below output in the console:
data/user/0/com.example.sample_app/app_flutter
Let me know if I am missing anything here!
simc commented Jan 14, 2022
@zexross I just published a new release that should return more information why opening the environment fails. Would be awesome if you could share the output.
zexross commented Jan 14, 2022
@leisim I upgraded the dependencies and tried the app again. Sharing the output here:
[ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: IsarError: Cannot open Environment: MdbxError (22): Invalid argument
simc commented Jan 14, 2022
Thanks @zexross this seems to be the same issue as #173. Would it be possible to share an example that causes this? Or does it happen with the sample app?
zexross commented Jan 14, 2022
@leisim No, it’s not happening with the sample app. I will soon try to test with the sample app from my side though.
I am sharing the schema class:
@Collection() class DeviceData
After running the code generator using flutter pub run build_runner build . After the app when Isar.open is called the mentioned exception is thrown. I am sharing the exact code used for invoking it as well:
var databasePath = (await getApplicationDocumentsDirectory()).path; final isar = await Isar.open( schemas: [DeviceDataSchema], directory: databasePath, );
Also, I am sharing all the related plugins that I used:
dependencies: isar: ^2.0.0-dev.1 isar_flutter_libs: ^2.0.0-dev.1 dev_dependencies: isar_generator: ^2.0.0-dev.1 build_runner: ^2.1.7
Hope these details help. Let me know if any other details are needed from my end that can help 🙂
zexross commented Jan 14, 2022
I tried testing it on the Sample App on two physical android phones that I have. These are my finding:
- It worked for Android 11 and failed for Android 10 with the same issue. This is the same time when I realised that I mentioned the wrong android version while opening the issue. I realised this when I tested it with my other smartphone. Really sorry for that!
- I also tried to test the earlier shared example on both versions. It is running fine on Android 11 but throwing the exception on Android 10.
Sorry again wrong platform version mention from my side.
simc commented Jan 14, 2022 •
@zexross Thanks so much for your awesome help! Unfortunately I still fail to reproduce it with a debug build of the sample app
- Android 10 emulator (arm64)
- Android 10 Samsung device
- Android 10 Xiaomi device
- Android 9 Xiaomi device
All of them worked without issue.
zexross commented Jan 14, 2022
@leisim That’s interesting. If possible, can you try the below mentioned or similar specs as well :
- SM J710F (Samsung Galaxy J7 mobile) | 3100f3f3ad7313cd | android-arm | Android 8.1.0 (API 27)
- MOA LX9N (Honor 9 mobile) | LSDBB20629207194 | android-arm | Android 10 (API 29)
These are the outputs from flutter doctor -v
Thanks a lot for putting in this much effort. Really appreciate it. And do let me know if I can help you in any way to figure out the bug.
simc commented Jan 14, 2022
I could reproduce it on a Samsung Galaxy J7 thanks again! working on a fix now
simc commented Jan 14, 2022 •
Seems to be a libmdbx error. I opened an issue erthink/libmdbx#262
simc changed the title Unhandled Exception: IsarError: Cannot open Environment Jan 15, 2022
simc added the bug Something isn’t working label Jan 15, 2022
andj207 commented Jan 15, 2022
It happens on my iPhone 5S too. It crashes on every first launch of the app and then works well. The error is as below (from Crashlyrics):
Crashed: Thread 0 libsystem_platform.dylib 0x8590 _platform_memset + 32 1 isar_flutter_libs 0x11c5b0 mdbx_env_open + 1172 2 isar_flutter_libs 0x465b0 isar_core::instance::IsarInstance::open_internal::h90ccdd5b072ea1b7 + 596 3 isar_flutter_libs 0x9378 _$LT$F$u20$as$u20$threadpool..FnBox$GT$::call_box::h34872a4952decded + 948 4 isar_flutter_libs 0x92c80 std::sys_common::backtrace::__rust_begin_short_backtrace::hb3bf5f86d8ac65d6 + 1608 5 isar_flutter_libs 0x923c4 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hfa83b65bfc57a1f3 + 304 6 isar_flutter_libs 0x90060 std::sys::unix::thread::Thread::new::thread_start::h4535596ead13a3c1 + 331 (alloc.rs:331) 7 libsystem_pthread.dylib 0xb2c0 + 128 8 libsystem_pthread.dylib 0xb220 _pthread_start + 44 9 libsystem_pthread.dylib 0xecdc thread_start + 4
final dbDir = await getApplicationSupportDirectory(); _isarDb = await Isar.open( schemas: [DataSchema], directory: dbDir.path, );
Isar version: 2.0.0-dev.0
Isar Generator version: 2.0.0-dev.0
ozzfelipe commented Jan 26, 2022
I got the same error here. Is there any solution for this?
Devices with problem:
SM A01 | 32-bit | Android GO 10
spatialbits commented Feb 1, 2022 •
Also experiencing this on Samsung SM-T580 tablet with Isar 2.1.0. The SM-T580 has a 64-bit processor though.
Same error as above:
Cannot open Environment: MdbxError (22): Invalid argument
simc commented Feb 3, 2022
@spatialbits Some older devices run a 32-bit Android version even if the processor is capable of 64-bit 🙁
prakharb10 commented Feb 4, 2022 •
Hi @leisim
Not sure if this is the right place to report this or should I open a new issue but I’m facing a similar error when trying to run my app on Pixel 4a API 30 (x86) emulator. The error raised is:
Invalid argument(s): Failed to load dynamic library ‘libisar.so’: dlopen failed: library «libisar.so» not found
I have added isar_flutter_libs to the pubspec file and the app works fine on my external device.
Also, the image running in the emulator is a non-Google Play image.
simc commented Feb 4, 2022
@prakharb10 do you use tle latest isar version?
prakharb10 commented Feb 4, 2022
Yes, I’m using version ^2.1.4
florian-lefebvre commented Feb 8, 2022
I’m facing the same issue with isar 2.1.4 on a Samsung Galaxy A10 (Android 11).
What can be done to solve this problem? Tell me if I can help you by doing tests or providing more information.
FYO the app is at https://github.com/EduWireApps/ynotes.
florian-lefebvre commented Feb 11, 2022
Hi @leisim sorry for the ping but supporting 32 bit devices seems (and is for me) quite important and don’t know if you were notified of my last comment. This issue is currently preventing our organization from publishing the app.
simc commented Feb 12, 2022 •
@florian-lefebvre It is not resolved yet: #187 (comment). I’m currently working on web support. After that I plan to fix this issue.
simc mentioned this issue Feb 12, 2022
simc commented Feb 14, 2022
Good news, there is a potential fix in libmdbx. Waiting for a new release.
emmggi commented Feb 22, 2022 •
Getting the same on Alcatel 1 5033X | Android 8.1 Oreo (Go edition) | Cortex-A53 but works on Alcatel 1S. Hopefully it’s fixed soon.
Contributor
richard457 commented Feb 23, 2022
I posted this #268 without consulting this here, so closing other one.
JsonLinesCode commented Feb 24, 2022
Looks like there is a new libmdbx release
spatialbits commented Feb 24, 2022
Yeah he specifically mentions @leisim in it. Looks promising 🙂
seanradford commented Apr 14, 2022 •
I’m sure this does not help, but I’m seeing this on a Nokia 1.3 Android Go:
androidId: bc4634c0b3b598fd
bootloader: unknown
display: 00WW_2_280_SP03
fingerprint: Nokia/Drax_00EEA/DRX:11/RKQ1.200928.002/00WW_2_28C:user/release-keys
hardware: qcom
host: Hoki_192-168-151-90_15527_docker
manufacturer: HMD Global
model: Nokia 1.3
versionBaseOs: Nokia/Drax_00EEA/DRX:11/RKQ1.200928.002/00WW_2_280:user/release-keys
versionCodename: REL
versionIncremental: 00WW_2_28C
versionPreviewSdk: 0
versionRelease: 11
versionSdk: 30
versionSecurityPatch: 2021-10-05
And a similar experience (but fatal crash on every app start) with an iPhone 5S, but is this the same defect?
Thread 22 Crashed:
0 libsystem_kernel.dylib 0x000000021625f0dc 0x21623c000 + 143580
1 libsystem_pthread.dylib 0x00000002162d8094 0x2162d6000 + 8340
2 libsystem_c.dylib 0x00000002161b7ea8 0x21615d000 + 372392
3 libsystem_malloc.dylib 0x00000002162b2684 0x216295000 + 120452
4 libsystem_malloc.dylib 0x00000002162b283c 0x216295000 + 120892
5 libsystem_malloc.dylib 0x00000002162a549c 0x216295000 + 66716
6 isar_flutter_libs 0x0000000102773a80 0x102654000 + 1178240
7 isar_flutter_libs 0x000000010277010c 0x102654000 + 1163532
8 isar_flutter_libs 0x00000001026962ac 0x102654000 + 271020
9 isar_flutter_libs 0x0000000102677724 0x102654000 + 145188
10 isar_flutter_libs 0x000000010265ad10 0x102654000 + 27920
11 isar_flutter_libs 0x00000001026e6094 0x102654000 + 598164
12 isar_flutter_libs 0x00000001026e57d8 0x102654000 + 595928
13 isar_flutter_libs 0x00000001026e3590 0x102654000 + 587152
14 libsystem_pthread.dylib 0x00000002162e12c0 0x2162d6000 + 45760
15 libsystem_pthread.dylib 0x00000002162e1220 0x2162d6000 + 45600
16 libsystem_pthread.dylib 0x00000002162e4cdc 0x2162d6000 + 60636
Thread 22 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x00000002162d32c9
x4: 0x0000000000000000 x5: 0x0000000000000000 x6: 0x0000000000000001 x7: 0x0000000000000000
x8: 0x0000000000000800 x9: 0x00000002162dc888 x10: 0x00000002162d7f18 x11: 0x000000000000000a
x12: 0x0000000000000000 x13: 0x0000000000000036 x14: 0x00000001440a2000 x15: 0xfffffffffffff000
x16: 0x0000000000000148 x17: 0x000000014405be00 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000017026f000 x21: 0x0000000126e68028 x22: 0x000000000000d527 x23: 0x000000017026f0e0
x24: 0x0000000000000000 x25: 0x0000000000000000 x26: 0x000000016efbbcbb x27: 0x000000017026f000
x28: 0x00000001440aac00 fp: 0x000000017026e400 lr: 0x00000002162d8094
sp: 0x000000017026e3d0 pc: 0x000000021625f0dc cpsr: 0x00000000
Fatal error unhandled exception cannot open directory
So I keep trying to start up my single player file but I keep getting this error message. At first it was happening through out my game play I would restart and it would be fine. Now I can’t even access my file without the error message. Does anyone know how to solve this issue? I would greatly appreciate it.
Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000001000000092
CL: 449745
0x00007ff6a8c4521e ArkAscended.exe!FAtlasSaveFileObjectReader::operator0x00007ff6a9957e23 ArkAscended.exe!FWeakObjectProperty::SerializeItem() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\PropertyWeakObjectPtr.cpp:144]
0x00007ff6a995757e ArkAscended.exe!FPropertyTag::SerializeTaggedProperty() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\PropertyTag.cpp:259]
0x00007ff6a9866a1b ArkAscended.exe!UStruct::SerializeVersionedTaggedProperties() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Class.cpp:1513]
0x00007ff6a9908a9b ArkAscended.exe!UObject::SerializeScriptProperties() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Obj.cpp:1694]
0x00007ff6a9908946 ArkAscended.exe!UObject::Serialize() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Obj.cpp:1537]
0x00007ff6a9908848 ArkAscended.exe!UObject::Serialize() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Obj.cpp:1377]
0x00007ff6a92f862d ArkAscended.exe!UPrimalItem::Serialize() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\Inventory\PrimalItem.cpp:7333]
0x00007ff6a99a007b ArkAscended.exe!WorldSerializedObject::SerializeObjectData() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\WorldSerializedObject.cpp:802]
0x00007ff6a9309fde ArkAscended.exe!UObjectSerializer::DeSerializeObject() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\Misc\ObjectSerializer.cpp:216]
0x00007ff6a8f50079 ArkAscended.exe!AShooterGameMode::LoadTribeData() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:5807]
0x00007ff6a9252bea ArkAscended.exe!UPrimalPlayerData::ApplyToPlayerState() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\Data\PrimalPlayerData.cpp:368]
0x00007ff6a8f481ca ArkAscended.exe!AShooterGameMode::StartNewShooterPlayer() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:4651]
0x00007ff6a8f475f0 ArkAscended.exe!AShooterGameMode::StartNewPlayer() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:4509]
0x00007ff6a8f43e7b ArkAscended.exe!AShooterGameMode::PostLogin() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:3817]
0x00007ff6aba07c79 ArkAscended.exe!UWorld::SpawnPlayActor() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\LevelActor.cpp:1053]
0x00007ff6aba365cc ArkAscended.exe!ULocalPlayer::SpawnPlayActor() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\LocalPlayer.cpp:288]
0x00007ff6abecc10d ArkAscended.exe!UEngine::LoadMap() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\UnrealEngine.cpp:15123]
0x00007ff6a8f15e0d ArkAscended.exe!UShooterEngine::LoadMap() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterEngine.cpp:1509]
0x00007ff6abec96e4 ArkAscended.exe!UEngine::Browse() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\UnrealEngine.cpp:14238]
0x00007ff6a8f194e1 ArkAscended.exe!UShooterEngine::Browse() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterEngine.cpp:1972]
0x00007ff6abeca47e ArkAscended.exe!UEngine::TickWorldTravel() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\UnrealEngine.cpp:14447]
0x00007ff6ab7dba76 ArkAscended.exe!UGameEngine::Tick() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\GameEngine.cpp:1873]
0x00007ff6a8f0fd4e ArkAscended.exe!UShooterEngine::Tick() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterEngine.cpp:127]
0x00007ff6a6729679 ArkAscended.exe!FEngineLoop::Tick() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\LaunchEngineLoop.cpp:5885]
0x00007ff6a67170bc ArkAscended.exe!GuardedMain() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Launch.cpp:195]
0x00007ff6a672d02a ArkAscended.exe!GuardedMainWrapper() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:118]
0x00007ff6a672da98 ArkAscended.exe!LaunchWindowsStartup() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:258]
0x00007ff6a672db6b ArkAscended.exe!WinMain() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:299]
0x00007ff6acaaefaa ArkAscended.exe!__scrt_common_main_seh() [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:288]
0x00007ffff9ce257d KERNEL32.DLL!UnknownFunction []
0x00007ffffb8aaa78 ntdll.dll!UnknownFunction []
Attach the debugger now, else press OK to continue.
Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000001000000092
CL: 449745
0x00007ff6a8c4521e ArkAscended.exe!FAtlasSaveFileObjectReader::operator0x00007ff6a9957e23 ArkAscended.exe!FWeakObjectProperty::SerializeItem() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\PropertyWeakObjectPtr.cpp:144]
0x00007ff6a995757e ArkAscended.exe!FPropertyTag::SerializeTaggedProperty() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\PropertyTag.cpp:259]
0x00007ff6a9866a1b ArkAscended.exe!UStruct::SerializeVersionedTaggedProperties() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Class.cpp:1513]
0x00007ff6a9908a9b ArkAscended.exe!UObject::SerializeScriptProperties() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Obj.cpp:1694]
0x00007ff6a9908946 ArkAscended.exe!UObject::Serialize() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Obj.cpp:1537]
0x00007ff6a9908848 ArkAscended.exe!UObject::Serialize() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\Obj.cpp:1377]
0x00007ff6a92f862d ArkAscended.exe!UPrimalItem::Serialize() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\Inventory\PrimalItem.cpp:7333]
0x00007ff6a99a007b ArkAscended.exe!WorldSerializedObject::SerializeObjectData() [E:\ASAContinuous\Engine\Source\Runtime\CoreUObject\Private\UObject\WorldSerializedObject.cpp:802]
0x00007ff6a9309fde ArkAscended.exe!UObjectSerializer::DeSerializeObject() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\Misc\ObjectSerializer.cpp:216]
0x00007ff6a8f50079 ArkAscended.exe!AShooterGameMode::LoadTribeData() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:5807]
0x00007ff6a9252bea ArkAscended.exe!UPrimalPlayerData::ApplyToPlayerState() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\Data\PrimalPlayerData.cpp:368]
0x00007ff6a8f481ca ArkAscended.exe!AShooterGameMode::StartNewShooterPlayer() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:4651]
0x00007ff6a8f475f0 ArkAscended.exe!AShooterGameMode::StartNewPlayer() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:4509]
0x00007ff6a8f43e7b ArkAscended.exe!AShooterGameMode::PostLogin() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterGameMode.cpp:3817]
0x00007ff6aba07c79 ArkAscended.exe!UWorld::SpawnPlayActor() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\LevelActor.cpp:1053]
0x00007ff6aba365cc ArkAscended.exe!ULocalPlayer::SpawnPlayActor() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\LocalPlayer.cpp:288]
0x00007ff6abecc10d ArkAscended.exe!UEngine::LoadMap() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\UnrealEngine.cpp:15123]
0x00007ff6a8f15e0d ArkAscended.exe!UShooterEngine::LoadMap() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterEngine.cpp:1509]
0x00007ff6abec96e4 ArkAscended.exe!UEngine::Browse() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\UnrealEngine.cpp:14238]
0x00007ff6a8f194e1 ArkAscended.exe!UShooterEngine::Browse() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterEngine.cpp:1972]
0x00007ff6abeca47e ArkAscended.exe!UEngine::TickWorldTravel() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\UnrealEngine.cpp:14447]
0x00007ff6ab7dba76 ArkAscended.exe!UGameEngine::Tick() [E:\ASAContinuous\Engine\Source\Runtime\Engine\Private\GameEngine.cpp:1873]
0x00007ff6a8f0fd4e ArkAscended.exe!UShooterEngine::Tick() [E:\ASAContinuous\Projects\ShooterGame\Source\ShooterGame\Private\ShooterEngine.cpp:127]
0x00007ff6a6729679 ArkAscended.exe!FEngineLoop::Tick() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\LaunchEngineLoop.cpp:5885]
0x00007ff6a67170bc ArkAscended.exe!GuardedMain() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Launch.cpp:195]
0x00007ff6a672d02a ArkAscended.exe!GuardedMainWrapper() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:118]
0x00007ff6a672da98 ArkAscended.exe!LaunchWindowsStartup() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:258]
0x00007ff6a672db6b ArkAscended.exe!WinMain() [E:\ASAContinuous\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:299]
0x00007ff6acaaefaa ArkAscended.exe!__scrt_common_main_seh() [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:288]
0x00007ffff9ce257d KERNEL32.DLL!UnknownFunction []
0x00007ffffb8aaa78 ntdll.dll!UnknownFunction []