sebheron / TikTokLiveSharp

Port of TikTok live library for C#
59 stars 50 forks source link

Library not working on unity android #22

Open cerglo091922 opened 2 years ago

cerglo091922 commented 2 years ago

The following code works fine in the Unity editor:

TikTokLiveClient tiktok = new TikTokLiveClient("XXXXXXX");
tiktok.OnGiftRecieved += OnGiftRecieved;
tiktok.Start();

But when exporting the apk and launching it in an actual android device, the app opens but the OnGiftRecieved method is not called, does anyone made this work?