Bendegúz Ács

Results 24 comments of Bendegúz Ács

I have a [fork](https://github.com/acsbendi/QuickPermissions-Kotlin) that I use in my application. Could we continue the development of this library there?

@iamkdblue WorkManager does not work reliably on certain devices. You should check https://dontkillmyapp.com/ for more information.

@kimci86 Thanks for the tips, I've updated the PR accordingly.

`unique_ptr` doesn't work well here because `SensorManager` has a private destructor. While we [could make it work](https://stackoverflow.com/questions/19274058/singleton-with-private-destructor-using-stdunique-ptr), the solution is quite hacky and it's way simpler to just use a...

I experienced the same error on an x86 Mac, but my libarchive was actually installed so `conda install libarchive -n base -c conda-forge` didn't work. I managed to figure out...

Hello, thanks for the report! This means that the library's main request recorder didn't work, that is, no request was recorded. Could you please provide more details on where this...

@andrebcmarinho I've tried to reproduce this issue, but I couldn't, the request were logged correctly every time for me, producing the following log output: ``` Sending request from WebView: Type:...

@andrebcmarinho Thanks for the sample app, I've managed to reproduce the issue with it. As I've mentioned before, this problem happens because the request recorder didn't work. I've spent some...

Being able to inspect the response is a good new feature, and it can be done easily once the library is capable of modifying and sending the requests. This new...

I'm glad to hear! This library does not actually send the request, it just inspects it. So changing the body has no effect. However, it wouldn't be difficult to implement...