Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ARkit and Appthinning.plist error

I have created a project under Unity with the ARKit plugin.

I have used the right versions. I compile from Unity, compile from XCode, archive and sent the (.ipa) on iTunes connect.

But, I received this error :

"Dear developer,

We have discovered one or more issues with your recent delivery for "Kouji". To process your delivery, the following issues must be corrected:

This bundle is invalid - Your archive contains paths that are not allowed: ( "AppThinning.plist" )

Once these issues have been corrected, you can then redeliver the corrected binary.

Regards,

The App Store team
"

My problem is that I found nowhere on internet a solution to these problems. Even on the apple developper website, this error is not listed.

If anyone can help me, it would be fantastic !

like image 957
ReyalS Avatar asked Sep 04 '17 08:09

ReyalS


2 Answers

I used an other method.

In Xcode, instead of "Publishing the app", I exported it for the app store.

Then I used these commands to delete the file, create a new ipa and push it on iTunes connect with the App loader.

mkdir extract unzip -qo MyApp.ipa -d extract cd extract ls rm AppThining.plist zip -qry ../MyApp.Fixed.ipa .

like image 126
ReyalS Avatar answered Sep 23 '22 01:09

ReyalS


Please refer this answer fixed my problem

Dont uncheck the Strip Swift symbols while uploading to AppStore

Check this image: enter image description here

Stackoverflow Answer

Apple Developer Forum

like image 23
anjnkmr Avatar answered Sep 22 '22 01:09

anjnkmr