skip to Main Content

Xcode – Why response is always {"detail":"Unsupported media type "text/plain" in request."} in swift?

I have created a sample app in Django which deletes a question from App. And provides a correct output when consumed using POSTMAN. class Questions(APIView): def delete(self,request): received_id = request.POST["id"] print(received_id) place = Question.objects.get(pk=received_id) place.delete() questions = Question.objects.all() seriliazer =…

VIEW QUESTION

Xcode – flutter swift Command PhaseScriptExecution failed with a nonzero exit code

When i want to make archive to upload app on apple Store in the end of archive i get this error /bin/sh -c /Users/aneeq/Library/Developer/Xcode/DerivedData/Runner-hfzveethzxphozduylnhsnbtzzct/Build/Intermediates.noindex/ArchiveIntermediates/Runner/IntermediateBuildFilesPath/Runner.build/Release-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh and also this waring None of the architectures in ARCHS (arm64) are valid. Consider setting ARCHS…

VIEW QUESTION
Back To Top
Search