Ivan Volosyuk

Results 102 comments of Ivan Volosyuk

Bummer for me. I already have a small project implemented in terms of auto concepts. It looks like I have to rewrite using different concepts.

Yes scan.c is the source for both binaries which were compiled with different NDK versions in the past. At some point the old version of the 'scan' stopped working on...

I honestly don't remember. The code is there just to collect the dump of filesystem structure and errors for collecting debugging information from users who asked to fix the issue...

I have android 12 and originally compiled app actually works for me, but with the fix I have several problems, like: crash at startup, no ability to view files and...

I think it is fine to get rid of all this additional indirection and debug dump creation. It adds too much complexity and I have no idea if it still...

You can just delete it and all the package depending on it. It is used via dynamic loading and if it doesn't exist nothing should break. On Sun, May 1,...

I actually made a split in the sources. Master branch is for minSdk>=26, api25 branch is for older versions. Play Store now have 2 apks uploaded. The code handling multiple...

It is compiled using sdk 19 (target), but used on devices with sdk>=26 (min). There is no contradiction.

When it runs on devices with sdk 26 it runs in the compatibility mode which enables use of some deprecated functions.

I made a split of APKs: 3083 release is for 1-25 API versions 4002 release is for 26+ API versions 3083 needs a system.jar which is a few classes from...