views:

96

answers:

1

I'm using libarchive and I have included the source and headers in my iphone project. Apple rejected the binary saying I've wrongfully used private APIs for a bunch of functions. One such functions is:

archive_read_data

How am I wrong? I want to keep my code because it works well but I also want a speedy acceptance. How do I solve this dilemma?

PS they are not responding to my cordial emails.

A: 

Since libarchive is free software, the easiest solution would probably just be to change the name of that function to something that doesn't trigger false alarms.

Chuck