Dan Albert

Results 428 comments of Dan Albert

We (Android) don't know of any issues that would require ReLinker on OS versions that new. An app- or device-specific bug seems likely, but if you [file a bug](b.android.com) with...

It looks like the version of libgpg that's currently shipped isn't compatible with ld.bfd. Presumably caused by a bug in the version of the compiler that was used to create...

Your "workaround" is correct. Gradle was given two conflicting inputs and has no way to resolve them automatically. The two libraries named "libc++_shared.so" might be compatible or they might not...

Oboe is actually the only dependency here that's already doing the right thing :) It's the other two that are causing the problem.

> Currently my android library (the one I showed you the build.gradle for) is distributed as an .aar. I checked this by looking in my maven repo; also the fact...

To be clear I don't think there's anything you can currently do on your end (unless you're the one that built those pdfium libraries as well). Probably worth a read...

That looks like a bug in the code (presumably the `!HAVE_STATVFS` case doesn't get exercised often). Both Android and glibc agree that the statfs name is `f_flags`, not `f_flag`. https://github.com/libarchive/libarchive/blob/master/libarchive/archive_read_disk_posix.c#L1800

How do I build this for Android? The Android.mk files that are in contrib/android is for the platform, not the NDK, and cmake gives me: ``` In file included from...

Ah, okay. Looking at the issues that come up with cmake, I think they can be fixed pretty easily. Unless one of you beats me to it, I can put...

@kientzle: what's your expected minimum supported Android version? libarchive uses things like `mbtowc` and `wctomb` that weren't available until android-21 (Lollipop).