se-bastiaan / TorrentStream-Android

A torrent streamer library for Android based on libtorrent4j
Other
343 stars 108 forks source link

Doesn't work on Android 11 #70

Closed FunkyMuse closed 2 years ago

FunkyMuse commented 4 years ago

If you build the sample with targetSdkVersion 30 It won't fetch the magnet

Inside TorrentStream.java byte[] data = torrentSession.fetchMagnet(torrentUrl, 30);

This is where it doesn't work.

FunkyMuse commented 4 years ago

It won't work even if you update jlib to 1.2.8.0 I think it's Android 11 (targetSdkVersion 30) related issue since it works flawlessly on <30

se-bastiaan commented 4 years ago

Well it does make a lot of sense that it would not work if it has never been tested to do so. Any investigations in why this is happening are welcome. I would suggest upgrading to 1.2.10 of jlibtorrent first though.

FunkyMuse commented 4 years ago

Well it does make a lot of sense that it would not work if it has never been tested to do so. Any investigations in why this is happening are welcome. I would suggest upgrading to 1.2.10 of jlibtorrent first though.

Tried updating to that version too, didn't work either.

There's a timeout always happening when fetching the magnet, the library returns null all the time, even on 1.2.10.0

se-bastiaan commented 4 years ago

I see you already escalated the issue to jlibtorrent, let's keep this issue open and wait what the conclusion there is. https://github.com/frostwire/frostwire-jlibtorrent/issues/238

dovahkrid commented 3 years ago

I see you already escalated the issue to jlibtorrent, let's keep this issue open and wait what the conclusion there is. frostwire/frostwire-jlibtorrent#238

It got fixed. Waiting for this issue now.

se-bastiaan commented 3 years ago

Cool! Hope I will have some time to update. PR is welcome too 😁

viettranhoang commented 2 years ago

@se-bastiaan I have created PR to update jlibtorrent to latest version and working perfectly on Android 11. https://github.com/TorrentStream/TorrentStream-Android/pull/77

FunkyMuse commented 2 years ago

@se-bastiaan I have created PR to update jlibtorrent to latest version and working perfectly on Android 11. #77

Works well, great job!