Android: Start in app purchase always fails

I’m trying for weeks now to implement in-app purchases for a huge update in my game.
But the Start In app purchase (and also the deprecated make in app purchase) always fails.

Also i’m getting fake IAP items in my game and not the real ones that i have in my google console

I’ve did these steps below:

Added

[OnlineSubsystem]
DefaultPlatformService=GooglePlay

[OnlineSubsystemGooglePlay.Store]
bSupportsInAppPurchasing=True

To DefaultEngine.ini and Config/Android/AndroidEngine.ini

Tried showing External UI login

Note: I always test the game after uploading it to google play store.

Here is some of my BP logic

Getting all available IAP items and adding them to the list

List item logic

Here the transaction ALWAYS RETURN FAILED

My permission settings:

I tried a lot of famous plugins but none of them worked for me. I need to publish an update for my game ASAP and i’m stuck on this issue for 3 weeks without any solution!

@GeorgeTheDev_1 found any solution to fix this?

1 Like

No, I’m still searching for the solution, I disabled this feature for my project until I found a solution.

1 Like

@GeorgeTheDev_1 My IAP’s are working now, Here how :

  • Add IOSEngine File (Path : ProjectDir/Config/IOS/IOSEngine.ini)
[OnlineSubsystem]
DefaultPlatformService=IOS

[OnlineSubsystemIOS.Store]
bSupportsInAppPurchasing=true
bUseStoreV2=true;

[/Script/IOSRuntimeSettings.IOSRuntimeSettings]
bEnableGameCenterSupport=True

NOTE : Do check in iOS Project settings that GameCenter in enabled.

  • Add Dependency in [ProjectName].Build.cs (If C++ Project)
PublicDependencyModuleNames.AddRange(new string[] { "OnlineSubsystem", "OnlineSubsystemUtils" });

if (Target.Platform == UnrealTargetPlatform.IOS)
{
	PrivateDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "OnlineSubsystem"});
	DynamicallyLoadedModuleNames.Add("OnlineSubsystemIOS");
}
  • In Game Start Call ShowExternalLoginUI

  • IAP Event (Execute in same sequence)
    Read In App PurchaseStart In App PurchaseFinalize

@surajreddy_02 This is for IOS, but I want to use the android IAP

@GeorgeTheDev_1 Oh my bad

@GeorgeTheDev_1 My IAP’s are working now, Here how :

Path : ProjectDir/Config/Android/AndroidEngine.ini

[OnlineSubsystem]
DefaultPlatformService=GooglePlay

[OnlineSubsystemGooglePlay.Store]
bSupportsInAppPurchasing=true

[/Script/AndroidRuntimeSettings.AndroidRuntimeSettings]
bEnableGooglePlaySupport=true
  • Add these in Android Project Settings
    a) Enable For Distribution
    b) Keystore
    c) Games App ID [Play Console → GoTo App → Play Game Services → Configuration → Credentials (Get Resources)]
    d) Add Google Play License Key [Play Console → GoTo App → Monetization Setup]

  • Add Dependency in [ProjectName].Build.cs (If C++ Project)

if (Target.Platform == UnrealTargetPlatform.Android)
        {
            PrivateDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "OnlineSubsystem" });
            DynamicallyLoadedModuleNames.Add("OnlineSubsystemGooglePlay");
        }
  • In Game Start

    • Call ShowExternalLoginUI
  • IAP Execute Event (Execute in same sequence)

    • Read In App Purchase
    • Start In App Purchase
    • Finalize
  • For Testing

    • Add tester mail id which is logged in PlayGames
      Play Console → GoTo App → Play Game Services → Testers

Also you can remove the GET_ACCOUNTS and USE_CREDENTIALS (optional)
Also you have to setup PlayGames support in PlayConsole

@surajreddy All steps done, now my game crashes on splash screen when i enable google play services. Its a null pointer exception from c++, but i only see the memory adrress and staff like that, nothing about what caused it

yeah, that because of some Java Class error, you have to do the changes in Source Engine and then make build from that. The link I provided above (this one UE 5.3 Mobile Developer get In-App purchases working without crash on Android - #2 by shaohui99)

@surajreddy hmmm, i spend weeks on this issue i’m an android developer and i know how the android OS works, i made a lot of changes to the code for android and in the UPL files but nothing changed.

I don’t have the ue5 source code by i will try to build the ue5 from the source and change this line. I hope it works.

@GeorgeTheDev_1 Sure, you can try with the Unreal source build. It did work on my side. If it doesn’t, then let me know.

1 Like

i’m building now the ue5.4 from source, i hope it works :slight_smile:

@GeorgeTheDev_1 , I haven’t tested it with UE5.4, but I checked the source code, and the code is the same though.

1 Like

@surajreddy I know that the code is the same but i want to test if this feature works without my changes in the android code using a sample project.

1 Like

@surajreddy I compiled ue5.4 i made a sample project and now it doesnt crash, but when i run the IAP logic nothing happens, i’m now uploading it to google play to test the generated apk from there to see if anything works

@surajreddy In the google play apk it’s the same (nothing happens) but i get the Hello {my username} message. I think something is off with the versions of the android libraries inside ue5.

Hey @surajreddy the game is still crashing but now I have the log from my device
This happens only when google services are enabled

isPrevious: true
Build: Redmi/fleur_eea/fleur:13/TP1A.220624.014/V14.0.5.0.TKEEUXM:user/release-keys
Hardware: fleur
Revision: 0
Bootloader: unknown
Radio: MOLY.LR13.R2.MP.V16.1.P76,MOLY.LR13.R2.MP.V16.1.P76
Kernel: Linux version 4.14.186-perf-ge39a2e2e26eb (builder@pangu-build-component-vendor-353794-hnfbj-62ts7-xd6n2) (Android (6443078 based on r383902) clang version 11.0.1 (https://android.googlesource.com/toolchain/llvm-project b397f81060ce6d701042b782172ed13bee898b79), LLD 11.0.1 (/buildbot/tmp/tmp6_m7QH b397f81060ce6d701042b782172ed13bee898b79)) #1 SMP PREEMPT Tue Sep 26 12:47:32 UTC 2023

Dropped-Count: 0
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'Redmi/fleur_eea/fleur:13/TP1A.220624.014/V14.0.5.0.TKEEUXM:user/release-keys'
Revision: '0'
ABI: 'arm64'
Timestamp: 2024-03-19 15:46:18.856222869+0200
Process uptime: 7s
ZygotePid: 1177478401
Cmdline: com.george.lyra
pid: 28633, tid: 29106, name: GameThread  >>> com.george.lyra <<<
uid: 10901
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0000000000000000
Cause: null pointer dereference
    x0  0000000000000000  x1  00000070e4ed5ee8  x2  000000709a2535e8  x3  0000000000000000
    x4  00000070d56e618c  x5  0000007079bb59e0  x6  00000070ae129e80  x7  000000706f3cda00
    x8  00000070d4707000  x9  00000000000075e4  x10 0000000000000014  x11 0000000000000001
    x12 0000000000000000  x13 0000000000000002  x14 0000000000000000  x15 0000000000000038
    x16 0000000000000001  x17 00000072399878a0  x18 00000000ffffff9f  x19 0000007079e12f40
    x20 0000000000000000  x21 00000070e4edb000  x22 00000070db23b7d8  x23 00000070db5b41e8
    x24 000000707ab40dc0  x25 00000070e4ed5f90  x26 00000070e4edaff8  x27 00000000000fc000
    x28 00000000000fe000  x29 00000070e4ed5f00
    lr  00000070d8d3f078  sp  00000070e4ed5ed0  pc  00000070d8d3f08c  pst 0000000060001000

backtrace:
      #00 pc 0000000006b3408c  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #01 pc 0000000006b33ce0  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #02 pc 0000000005f7c77c  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #03 pc 0000000005f7bc80  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #04 pc 0000000005945ab8  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #05 pc 0000000006b4eff0  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #06 pc 0000000007343334  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #07 pc 0000000005928a28  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #08 pc 000000000622a29c  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #09 pc 00000000062296a0  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #10 pc 000000000622cd60  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #11 pc 000000000623eb64  /data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so (BuildId: 05d7bb380bcad327710e381a21ae90ab5470dd76)
      #12 pc 00000000000fba4c  /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: 3908c7c57fa04c64df24425cf16523cf)
      #13 pc 000000000008e5f0  /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 3908c7c57fa04c64df24425cf16523cf)

memory near x1 ([anon:stack_and_tls:29106]):
    00000070e4ed5ec0 0000007079e12f40 00000070d8d3f04c  @/.yp...L...p...
    00000070e4ed5ed0 0000000000000004 0000000000000000  ................
    00000070e4ed5ee0 0000000000000000 000000707ab40dc0  ...........zp...
    00000070e4ed5ef0 0000007000000003 63d17cf80080cde5  ....p........|.c
    00000070e4ed5f00 00000070e4ed5f50 00000070d8d3ece4  P_..p.......p...
    00000070e4ed5f10 00000070e4ed5f90 0000007079a5b308  ._..p......yp...
    00000070e4ed5f20 0000000000000001 00000070e4edb000  ............p...
    00000070e4ed5f30 0000007079e12f40 0000007079a5b308  @/.yp......yp...
    00000070e4ed5f40 00000070ae480d80 0000007079e12f40  ..H.p...@/.yp...
    00000070e4ed5f50 00000070e4ed6030 00000070d8187780  0`..p....w..p...
    00000070e4ed5f60 0000007079a5b300 0000007079a5b300  ...yp......yp...
    00000070e4ed5f70 0000000000000000 0000007079e12f40  ........@/.yp...
    00000070e4ed5f80 00000070cef77aa8 00000070ae480d80  .z..p.....H.p...
    00000070e4ed5f90 00000070e4ed5f88 00000070e4ed5f78  ._..p...x_..p...
    00000070e4ed5fa0 0000000000000000 0000000000000000  ................
    00000070e4ed5fb0 00000070ae4b0000 0000000000000000  ..K.p...........
    00000070e4ed5fc0 0000000000000000 0000000000000000  ................
    00000070e4ed5fd0 0000000000000000 00000000e4ed6030  ........0`......
    00000070e4ed5fe0 0000000000000000 00000070e4ed60c8  .........`..p...
    00000070e4ed5ff0 0000000000000006 0000000400000000  ................
    00000070e4ed6000 0000000000000010 0000000000000000  ................
    00000070e4ed6010 0000000000000000 63d17cf80080cde5  .............|.c
    00000070e4ed6020 00000070e4ed60e0 63d17cf80080cde5  .`..p........|.c
    00000070e4ed6030 00000070e4ed60e0 00000070d8186c84  .`..p....l..p...
    00000070e4ed6040 00000000000fe000 00000070dbc8a72c  ........,...p...
    00000070e4ed6050 00000070e4edb000 0000000000000003  ....p...........
    00000070e4ed6060 00000070e4edb000 0000000000000048  ....p...H.......
    00000070e4ed6070 0000007079e735a8 0000007079a5b300  .5.yp......yp...
    00000070e4ed6080 00000070e4ed60a0 00000070d5689964  .`..p...d.h.p...
    00000070e4ed6090 00000070e4ed60d8 00000070e4ed60d8  .`..p....`..p...
    00000070e4ed60a0 00000070e4ed60f0 00000070d7b50ce0  .`..p.......p...
    00000070e4ed60b0 00000070dbce51a8 0000000079a5b200  .Q..p......y....
    00000070e4ed60c0 0000000000000300 0000007079e73580  .........5.yp...
    00000070e4ed60d0 000000180000000d 63d17cf80080cde5  .............|.c
    00000070e4ed60e0 00000070e4ed61e0 00000070d7b50abc  .a..p.......p...
    00000070e4ed60f0 00000000000fe000 00000000000fc000  ................
    00000070e4ed6100 00000070e4edaff8 00000070dbc8a72c  ....p...,...p...
    00000070e4ed6110 000000706f4e8f80 0000000000000003  ..Nop...........
    00000070e4ed6120 00000070e4edb000 0000000000000003  ....p...........
    00000070e4ed6130 000000706ee51fc0 0000007079a5b200  ...np......yp...
    00000070e4ed6140 0000000000000000 0000007000000000  ............p...
    00000070e4ed6150 0000000000000000 0000000000000000  ................
    00000070e4ed6160 00000000000f0000 0000000000000000  ................
    00000070e4ed6170 0000000000000000 0000000000000000  ................
    00000070e4ed6180 0000000000000000 0000000000000008  ................
    00000070e4ed6190 0000000000000000 00000070d59cef48  ........H...p...
    00000070e4ed61a0 00000070e4ed6268 000000706f41c040  hb..p...@.Aop...
    00000070e4ed61b0 0000000000000000 00000070e4ed6268  ........hb..p...
    00000070e4ed61c0 0000000000000000 0000007079d481e0  ...........yp...
    00000070e4ed61d0 0000000400000001 63d17cf80080cde5  .............|.c
    00000070e4ed61e0 00000070e4ed6290 00000070d8d59ff4  .b..p.......p...
    00000070e4ed61f0 00000070e4edb000 00000070e4edb000  ....p.......p...
    00000070e4ed6200 00000070e4edb000 00000070e4ed6350  ....p...Pc..p...
    00000070e4ed6210 0000007079a5b200 0000007079a5b200  ...yp......yp...
    00000070e4ed6220 00000070e4edb000 0000000000000001  ....p...........
    00000070e4ed6230 00000070e4ed6268 0000000000000000  hb..p...........
    00000070e4ed6240 00000070e4ed62a0 00000070d824c238  .b..p...8.$.p...
    00000070e4ed6250 0000000000000000 0000000000000000  ................
    00000070e4ed6260 00000000000fe000 0000000000000000  ................
    00000070e4ed6270 0000000000000000 00000000000003a6  ................
    00000070e4ed6280 000000707a920780 63d17cf80080cde5  ...zp........|.c
    00000070e4ed6290 00000070e4ed62d0 00000070d954e338  .b..p...8.T.p...
    00000070e4ed62a0 00000070e4edb000 00000070d7b33a0c  ....p....:..p...
    00000070e4ed62b0 00000070e4edb000 00000070e4ed6350  ....p...Pc..p...

memory near x2:
    000000709a2535c0 6f341dc000000000 0000000000000070  ......4op.......
    000000709a2535d0 0000000000000000 0000007079e12f40  ........@/.yp...
    000000709a2535e0 0000000000000000 00000000000008da  ................
    000000709a2535f0 0000000000000000 0000000000000000  ................
    000000709a253600 0000000000000000 0000000000000000  ................
    000000709a253610 0000000000000000 0000000000000000  ................
    000000709a253620 0000000000000000 0000000000000000  ................
    000000709a253630 0000000000000000 0000000000000000  ................
    000000709a253640 0000000000000000 0000000000000000  ................
    000000709a253650 0000000000000000 0000000000000000  ................
    000000709a253660 0000000000000000 0000000000000000  ................
    000000709a253670 0000000000000000 0000000000000000  ................
    000000709a253680 0000000000000000 0000000000000000  ................
    000000709a253690 0000000000000000 0000000000000000  ................
    000000709a2536a0 0000000000000000 0000000000000000  ................
    000000709a2536b0 0000000000000000 0000000000000000  ................
    000000709a2536c0 0000000000000000 0000000000000000  ................
    000000709a2536d0 0000000000000000 0000000000000000  ................
    000000709a2536e0 0000000000000000 0000000000000000  ................
    000000709a2536f0 0000000000000000 0000000000000000  ................
    000000709a253700 0000000000000000 0000000000000000  ................
    000000709a253710 0000000000000000 0000000000000000  ................
    000000709a253720 0000000000000000 0000000000000000  ................
    000000709a253730 0000000000000000 0000000000000000  ................
    000000709a253740 0000000000000000 0000000000000000  ................
    000000709a253750 0000000000000000 0000000000000000  ................
    000000709a253760 0000000000000000 0000000000000000  ................
    000000709a253770 0000000000000000 0000000000000000  ................
    000000709a253780 0000000000000000 0000000000000000  ................
    000000709a253790 0000000000000000 0000000000000000  ................
    000000709a2537a0 0000000000000000 0000000000000000  ................
    000000709a2537b0 0000000000000000 0000000000000000  ................
    000000709a2537c0 0000000000000000 0000000000000000  ................
    000000709a2537d0 0000000000000000 0000000000000000  ................
    000000709a2537e0 0000000000000000 0000000000000000  ................
    000000709a2537f0 0000000000000000 0000000000000000  ................
    000000709a253800 0000000000000000 0000000000000000  ................
    000000709a253810 0000000000000000 0000000000000000  ................
    000000709a253820 0000000000000000 0000000000000000  ................
    000000709a253830 0000000000000000 0000000000000000  ................
    000000709a253840 0000000000000000 0000000000000000  ................
    000000709a253850 0000000000000000 0000000000000000  ................
    000000709a253860 0000000000000000 0000000000000000  ................
    000000709a253870 0000000000000000 0000000000000000  ................
    000000709a253880 0000000000000000 0000000000000000  ................
    000000709a253890 0000000000000000 0000000000000000  ................
    000000709a2538a0 0000000000000000 0000000000000000  ................
    000000709a2538b0 0000000000000000 0000000000000000  ................
    000000709a2538c0 0000000000000000 0000000000000000  ................
    000000709a2538d0 0000000000000000 0000000000000000  ................
    000000709a2538e0 0000000000000000 0000000000000000  ................
    000000709a2538f0 0000000000000000 0000000000000000  ................
    000000709a253900 0000000000000000 0000000000000000  ................
    000000709a253910 0000000000000000 0000000000000000  ................
    000000709a253920 0000000000000000 0000000000000000  ................
    000000709a253930 0000000000000000 0000000000000000  ................
    000000709a253940 0000000000000000 0000000000000000  ................
    000000709a253950 0000000000000000 0000000000000000  ................
    000000709a253960 0000000000000000 0000000000000000  ................
    000000709a253970 0000000000000000 0000000000000000  ................
    000000709a253980 0000000000000000 0000000000000000  ................
    000000709a253990 0000000000000000 0000000000000000  ................
    000000709a2539a0 0000000000000000 0000000000000000  ................
    000000709a2539b0 0000000000000000 0000000000000000  ................

memory near x4 (/data/app/~~pmn09aASILCYssQ1-Zc_6g==/com.george.lyra-YrysmXvT2qoY21HZ_Ndpsw==/lib/arm64/libUnreal.so):
    00000070d56e6160 f900017fb940096c b900092cf9000128  l.@.....(...,...
    00000070d56e6170 b5fffda8b900195f aa1303e1aa1403e0  _...............
    00000070d56e6180 a8c27bfda9414ff4 a9bb7bfd17ffeada  .OA..{.......{..
    00000070d56e6190 910003fda90167fa a90357f6a9025ff8  .g......._...W..
    00000070d56e61a0 528ffe08a9044ff4 eb08005f2a0303f6  .O.....R...*_...
    00000070d56e61b0 aa0103f3aa0203f4 aa0003f77a509862  ........b.Pz....
    00000070d56e61c0 d0032b8854000ac8 b9400100911eb108  ...T.+........@.
    00000070d56e61d0 95590b1334000a40 aa0003f5b4000a00  @..4..Y.........
    00000070d56e61e0 f2403e7fb40002d3 9270be6854000980  .....>@....Th.p.
    00000070d56e61f0 3940091a79400119 b400027439400d08  ..@y..@9..@9t...
    00000070d56e6200 5400022171038d1f 540001e3eb14033f  ...q!..T?......T
    00000070d56e6210 900321a93400011a 4b1a0108528005a8  ...4.!.....R...K
    00000070d56e6220 78685928f9431d29 54000122eb14011f  ).C.(Yhx...."..T
    00000070d56e6230 1400005caa1303f8 2a1f03fab4000574  ....\...t......*
    00000070d56e6240 1400000d2a1f03f9 5400066171038d1f  ...*.......qa..T
    00000070d56e6250 f94009098b1a16a8 b9400908b40000e9  ......@.......@.

memory near x5:
    0000007079bb59c0 00000000ffffffff 00000070ae471500  ..........G.p...
    0000007079bb59d0 000000706f341dc0 00000005ffffffff  ..4op...........
    0000007079bb59e0 00000070ae480d80 0000007079e12f40  ..H.p...@/.yp...
    0000007079bb59f0 00000009ffffffff 0000000000000000  ................
    0000007079bb5a00 0000000000000000 0000000000000000  ................
    0000007079bb5a10 0000000000000000 0000000000000000  ................
    0000007079bb5a20 0000000000000000 0000000000000000  ................
    0000007079bb5a30 0000000000000000 0000000000000000  ................
    0000007079bb5a40 0000000000000000 0000000000000000  ................
    0000007079bb5a50 000000000000008f 00000000000002d4  ................
    0000007079bb5a60 0000000000000000 0000000000000000  ................
    0000007079bb5a70 0000000000000000 0000000000000000  ................
    0000007079bb5a80 00000000000002d4 00000000000002d4  ................
    0000007079bb5a90 0001000000000004 0000000000000000  ................
    0000007079bb5aa0 00000070d58e74d8 0000000000000000  .t..p...........
    0000007079bb5ab0 0000000000000000 00000070d46fe628  ........(.o.p...
    0000007079bb5ac0 00000070dad4d748 0000007079bb5980  H...p....Y.yp...
    0000007079bb5ad0 0000000000000000 00000070d46fe628  ........(.o.p...
    0000007079bb5ae0 0000000000033cd8 0000000000000001  .<..............
    0000007079bb5af0 40cf38d9c9cd7a2d 40cf38d9cbb54ef1  -z...8.@.N...8.@
    0000007079bb5b00 40cf38d9dfd29f30 0000000000000000  0....8.@........
    0000007079bb5b10 00000070d58e7094 0000000000000000  .p..p...........
    0000007079bb5b20 0000000000000000 0000000000000000  ................
    0000007079bb5b30 00000070dad4d5a0 0000000000033cd8  ....p....<......
    0000007079bb5b40 004e005900000456 00000070ae5ef280  V...Y.N...^.p...
    0000007079bb5b50 00000070d58e7518 0000000000000000  .u..p...........
    0000007079bb5b60 0000000000000000 00000070d46fe628  ........(.o.p...
    0000007079bb5b70 00000070dad4d7b8 0000007079bb5980  ....p....Y.yp...
    0000007079bb5b80 0000000000000000 00000070d46fe628  ........(.o.p...
    0000007079bb5b90 000000706f6a4bd0 0000000000000000  .Kjop...........
    0000007079bb5ba0 0000000000000000 0000000000000000  ................
    0000007079bb5bb0 0000000000000000 0000000000000000  ................
    0000007079bb5bc0 0000007079bbb380 0000000000000000  ...yp...........
    0000007079bb5bd0 0000000000000000 0000000000000000  ................
    0000007079bb5be0 0000000000000000 0000000000000042  ........B.......
    0000007079bb5bf0 0000000000000000 0000000000000000  ................
    0000007079bb5c00 000003f10000020a 0000000000000000  ................
    0000007079bb5c10 0000000000000000 00000070792bcf20  ........ .+yp...
    0000007079bb5c20 0000000000000000 0000000000000000  ................
    0000007079bb5c30 0000000000000000 0000000000000000  ................
    0000007079bb5c40 0000000000000000 0000000000000000  ................
    0000007079bb5c50 0000000000000000 0000000000000000  ................
    0000007079bb5c60 0000000000000000 0000000000000000  ................
    0000007079bb5c70 0000000000000000 0000000000000000  ................
    0000007079bb5c80 0000000000000000 0000000000000000  ................
    0000007079bb5c90 0000000000000285 0000000000000a96  ................
    0000007079bb5ca0 0000000000000000 0000000000000000  ................
    0000007079bb5cb0 0000000000000000 0000000000000000  ................
    0000007079bb5cc0 0000000000000a96 0000000000000a96  ................
    0000007079bb5cd0 0001000000000004 0000000000000000  ................
    0000007079bb5ce0 00000070d58e74d8 0000000000000000  .t..p...........
    0000007079bb5cf0 0000000000000000 00000070d46fe628  ........(.o.p...
    0000007079bb5d00 00000070dad4d748 0000007079bb5bc0  H...p....[.yp...
    0000007079bb5d10 0000000000000000 00000070d46fe628  ........(.o.p...
    0000007079bb5d20 000000000003746b 0000000000000001  kt..............
    0000007079bb5d30 40cf38937e45bc5e 40cf38938e58077e  ^.E~.8.@~.X..8.@
    0000007079bb5d40 40cf389a82f98045 0000000000000000  E....8.@........
    0000007079bb5d50 00000070d58e7094 0000000000000000  .p..p...........
    0000007079bb5d60 0000000000000000 0000000000000000  ................
    0000007079bb5d70 00000070dad4d5a0 000000000003746b  ....p...kt......
    0000007079bb5d80 004300790000006b 00000070ae5ef280  k...y.C...^.p...
    0000007079bb5d90 00000070d58e7518 0000000000000000  .u..p...........
    0000007079bb5da0 0000000000000000 0000000000000000  ................
    0000007079bb5db0 00000070dad4d7b8 0000007079bb5bc0  ....p....[.yp...

memory near x6:
    00000070ae129e60 0000000000000000 0000000000000000  ........

Hii @GeorgeTheDev_1, sorry for the late reply, If it is possible, can you share your sample project I can check here.
Also, are you in discord ? I can reply you there faster.

1 Like

This is my discord

Giorgos Sepetadelhs#1382

I hope you can help :slight_smile: