In Box2d i got 2349 errors when i chang code from one mac to other mac - iphone

I am working on Box2d application,
my problem is when i move my application's source code from one mac to another mac i got 2349 Errors, i don't know why i am getting this errors.
i even try removing Box2D source from my application from and add again but doesn't work.
if any one know reason and solution please share with me.
Thanks.

Sounds like you are missing some framework. Posting some of the error messages might help us to help you better!

I found solution to my Question.
i got such errors because of change in name of my projects containing folder.
i.e. my working project was at source path /Bubbles/Boxes
on destination mac i changed it to /Bubbles123/Boxes
i changed Bubbles to Bubbles123 that was the problem, it might be creating problem with path.
it works for me now.
Thanks.

Related

stucked in flutter with many issues

I want to ensure codes works on emulator.
I just tried to run the preset flutter codes. I saw there is Turkish words on path, I changed that. But it didn't change in path.
I just moved the location of project and it worked ! Still don't know how or why but it works anyway.
Thanks to everyone
(I will add the answer tag asap.)

Unity3D v4.6.9 game doesn't run on iOS8 with xCode7

When we try running the game we see our splash screen and then we are getting the error Thread1:EXC_BAD_ACCESS code=1
at
il2cpp::icalls::mscorlib::System::String::RedirectToCreateString:
It happens before any of our c# code gets executed - before Awake().
It does run properly on iOS9.
We have tried it on Unity4.6.9 and on Unity4.6.9p3.
We have managed to build and run it for iOS8 only from Unity4.6.6 with xCode6.4. But we do need iOS9.
We can't find any references to this issue on the web, any help will be greatly appreciated.
xCode screen shot:
Unity Player Settings
Edited:
We have tried it from Unity5.2.3 too, no luck.
Another factor you should probably know is that before we run into the issue described above, we have edited the 'Run Debug' scheme of our product in xCode and disabled the 'GPU Frame Capture' because we had a different issue that prevented us from running our game on iOS8.
Here is the link we followed.
And here is a screen shot of our original issue:
We are really stuck here, hope you can help.
Are you sure that this Unity project is using the mscorlib.dll assembly from the Unity version of Mono? It looks like it may not be.
The RedirectToCreateString icall should never actually be executed, as the Mono mscorlib assembly used in Unity build strings via a single CreateString method. When this happens it usually means the moscorlib.dll version is out of sync with the IL2CPP runtime.
I'm not sure why this is happening, but it might be worth trying 4.6.9p3 with an empty (or simple) project to note the difference.
Its a replay for Josh Peterson, I could not replay with an image in a comment to his answer.
I was looking for the mscorlib.dll in my project but couldn't find one, so I looked in an old project and did find it. Here is an image of the file system of both projects.
Any way I don't know the origin of the file, I didn't manually played with it.
I have tried now to copy the mscorlib.dll from the old project to the new with no luck.
Any way my company decided to stop this investigation now and jump to the latest Unity 5.
Hope we will have more luck over there.
Thank you again.

can't find blueprint in packaged unreal project

i'm working on a game in unreal, and just for funsies i decided to package my project to see how it would work outside the editor. for some reason it doesn't, its says fatal error followed by a bunch of error codes.
I tried going through the log, which can be found here: Link to download on Mega.nz
the log says it couldn't find the blueprint for my "BasicBullet", although the editor can (it both compiles and runs fine in the editor). That message is followed by somehting i don't understand, and then a fatal error message. can someone explain what is going on?
Thanks in advance
I fixed the problem, all i had to do was go to the config folder, in the project and edit the DefaultEditor.ini file.
i changed bDontLoadBlueprintOutsideEditor= true to bDontLoadBlueprintOutsideEditor= false and now it works perfectly.
been struggling with this problem for days now, and the solution was so simple.

TapkuLibrary.h and <TapkuLibrary> not found - Lexical and Preprocessor Issues

I've had huge troubles with this for quite a while now.
A few days ago after rebuilding my project, I got an error saying "TapkuLibrary.h" was not found. I removed the files attached to the project and followed the directions exactly directed at https://github.com/devinross/tapkulibrary
However, when I tried to rebuild my project, the file is still not found!
I'm using XCode 4.6.1 building for iOS 6.1
I can see that the files attached to the xcode project from Tapku can be found because I can find them in the side bar. For some reason though, TapkuLibrary.h is not found.
Also, when I control a class, it links me to the right symbol for all files except TapkuLibrary.h which is, again, not found.
I'm quite stressed by this, so any clues would be immensely appreciated. Thank you so much in advance!
UPDATE:
I've tried gain to remove all the files and readd them to no avail.
Please look at the solution in this question: TapkuLibrary.h not found on archive
I think it's exactly the same issue you're having.

Problems with finding Three20 Header Files for iPhone App

I am trying to create an app using three20 for a photo viewer. When I follow the instructions on their site (which is now simply running a python script) it seems to behave correctly but then when I try to build I get a "No such file or directory" error for using #import <Three20/Three20.h>.
I am pretty sure the header search path is correct, but I can't seem to get it working, even when I follow exact tutorials online.
Has anyone seen this problem before and know how to fix it?
Have you checked to make sure you actually have added three20 into your dir. as I remember having a similar problem, when I tried to use three20 which was due to the fact it wasn't in the right place, when I thought it was.
It sounds like you haven't imported the files correctly. Have another look at where you added the files to you project, if you have at all. (If not, you need to drag them into your project first!)
If you try to compile the project without the file added to the project, it will fail. Simply adding a path is not enough.
You need to drag it into Xcode...
Add it to the project...
And then your code should build.
I hope this helps!