heroiclabs / nakama-unreal

Unreal client for Nakama server.
Apache License 2.0
205 stars 62 forks source link

Add Android support #71

Closed GameInstitute closed 2 years ago

GameInstitute commented 2 years ago

In Unreal, the libHttpClient was replaced by UnrealHttpTransport and UnrealWsTransport, and I don't want to add another libc++_shared.so to my app(may conflict with Unreal's own).

I had decompressed nakama-release.aar(compiled from nakama-sdk with UNREAL).

  1. include folder was from [nakama-release]/modules/nakama-sdk/include.
  2. libsfolder was from [nakama-release]/modules/nakama-sdk/jni, and removed libc++_shared.so.
lugehorsam commented 2 years ago

@GameInstitute thanks for explaining why you had to remove libc++_shared.so from the .aar and use the individal .so libraries. Makes sense to me 👍

GameInstitute commented 2 years ago

@lugehorsam Of course. I submitted it.