This question does not appear to be about programming within the scope defined in the help center.
Closed 5 years ago.
Improve this questionI'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 开发者_如何学Cbunch 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.
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.
libarchive exists as a dynamic library on iOS. Did you try and remove your static implementation and instead link with the dynamic library?
精彩评论