Unity not Building and running game - android-studio

I have started working in a Unity for last couple of days :) . I love the Android Studio(being as an Android Developer). But now I have to change the game a little bit , it seems like its an easy task but My Unity environment is not working properly.
Well I have installed the Unity 4.6 and a day beofre it was runing the game nicely. I have changed some coding , for example adding the ads and some other stuff and all went in the way as expected. But then, after some more specific work, I have noticed that Unity is not building the game and hence not running it on my device.
What is happening:
I dont know, as when I click to ctrl+b (to build and run) to run the project the building process starts and stops imediately showing no error in the log. So I deleted the game after back up move the game in the new directory delte some files as I was reading some help on the internet.
After doing that the project is now able to show me the error and it states that
The animation state xyz could not be played because it could not be
found.
Where as I can see that this file is in assets folder. I really do not know why it is still showing me this error. I have re Imported the assets many time but its not helping me out.
Please tell me how to resolve this issue , I know its compiler type error as far as I think (just from my experience from the Eclipse). Please suggest me a way to run my project.

Not sure will that help but maybe you can try "Re-import all packages".... I bumped into some problem same as your where I have the script/prefab but the Editor is throwing up some errors but I did not get the same error message as yours.

Related

unresolved reference: fillMaxSize() and unresolved reference: size() error in android studio with Kotlin

I started very basic android development and from the very first day it seems that android studio and kotlin are just like a bundle of problems. Like after first installation of androidstudio I build the basic samples on Kotlin and it worked fine. After few hours I got a notification on androidstudio about some update so I did it and then every thing stopped working I looked for solution on Internet and tried for 2-3 hours but didn't get it back working. Then I uninstalled everything related to androidstudio on my PC and re-installed it and then it started to work again.
After few days I started to implement a tutorial and I used the same code and configuration described in tutorial but on the very first step where they just created a basic sample application without any thing and it started to show errors like Unresolved reference: fillMaxSize and Unresolved reference: size and I couldn't find any solid solution on Internet and surprisingly found out that internet is full of these kind of issues on androidstudio.
In the project I am using the function fillMaxSize() in another file where it works 100% fine but in the same project but in different file it gives error. Can anybody give a solution to this?
Apart from this I just want to ask that is android development in general is like this? That every time you go 1 line further and you see new errors and then you have to spend hours on internet and look for solutions and you then found tons of queries about these errors on internet and nothing is clear and particularly working for your case but it is kind of similar error_
Adding new imports, changing plugin versions, adding plugins, changing dependencies and versions.
After few hours I got a notification on androidstudio about some update so I did it and then every thing stopped working
Updates of course are good as they try to fix or enhance something. However, some updates will add, remove or change some previous working functions to achieve the fixing or enhancing purpose. And that's why some programs require certain version of Software instead of always the latest one to run.
In the project I am using the function fillMaxSize() in another file where it works 100% fine but in the same project but in different file it gives error
In this case, you will have to check whether you have really added the corresponding import to that particular file. If there is really configuration problem, it should not have worked in one file but not the other. import is something that you have to do in every file using that function.

All node usb libraries do not work and all give some kind of error

I'm developing a VSCode Extension where you can develop CircuitPython code. I want it to be able to upload your code to your pico, or whatever microcontroller you're using.
For this I need to detect all usb drives that are connected, I've tried libraries like node-usb, usb-detection, etc. But they always give some kind of error, for usb-detection for example you need to rebuild the library with this command:
./node_modules/.bin/electron-rebuild
But then I get greeted with this:
text here: https://pastebin.com/E7bjtWgP
I have absolutely no idea what anything of this means, I've installed vs build tools 2022, 2017 and even added it to my community installation.
After that I tried the usb library. Which again, greets me very kindly with:
I've also tried some other libraries but they all give a similar result. Some do this:
And I've also seen some very questionable things like this:
I've been googling, and debugging now for roughly 4 hours and atm I'm tired so I'll probably try again in a couple of hours.
EDIT:
I've made an entirely new project, moved over all the code and it now works. I have absolutely no idea what the problem was but at least its working now.

Debug an running exe app that packed by zeit/pkg

Can I attach a debugger to a running NodeJS application that packed by pkg?
My new company has a packed console app without source code. It's worked fine in last year, but it has some small exception in this year.
It seems some exceptions happened because the old developer did not cover or hardcode the year variable. All exceptions mentioned c:\snapshot\xxx.js.
I guess we have a solution to recover their file and debug to it.
Anyone help me to find a debugger, or recover the source code? Can I fix it by IDA or ollydbg?
Thanks

MongoDB ETIMEOUT

Ok i dont know what is going on here i have 2 working project and some backup project. Which were working before and is working online right now in Heroku.
Today i try to do the normal routine and started node, and now i am getting this error below. I though it might be that i just recently install team-view and that might affect it. But this doesn't seem to be the case because i tried it on a different computer and i get the same error. I have no clue to how to debug this, can someone help me please!!
Change you connection string to
variable = 'mongodb://username:xxx#clusternamecluster-shard-00-00-i548w.mongodb.net:27017,developerbookcluster-shard-00-01-i548w.mongodb.net:27017,developerbookcluster-shard-00-02-i548w.mongodb.net:27017/test?ssl=true&replicaSet=DeveloperBookCluster-shard-0&authSource=admin&retryWrites=true&w=majority';

Running sample projects in MvvmCross v3 (Hot Tuna)

I'm trying to run sample projects (viz. BestSellers and Conference) that are present in MvvmCross v3 branch. I resolved the strong assembly reference issues successfully. However each time I run a sample project, I get System.TypeLoadException in MvxFullBinding and MvxValueConverterRegistryFiller classes.
Exception in MvxFullBinding class:
Exception in MvxValueConverterRegistryFiller class:
Is anybody able to run the sample projects successfully? How do I get around these exceptions?
It looks like you're running this as the 'Touch' projects from Visual Studio? In which case you are way ahead of what I've managed to achieve.
If that is correct, then I suspect that what you are seeing is that you have:
built proper PCLs built in VS/Windows against the portable reference assemblies
but these cannot be executed against the current MonoTouch/Xamarin.iOS runtime.
If you try, you may see issues like: iOS black screen and MissingMethodException: Method not found: 'System.Type.op_Equality'
For some more info see 'almost portable binaries' on http://slodge.blogspot.co.uk/2013/01/almost-portable-binaries.html
There is 'proper' PCL support currently being worked on within XamLabs - so I am hopeful that there may be a solution to this problem arriving in the Xamarin.Android Alpha channel any day now - but don't expect this to be painless initially.
Of course, I might be wrong on this - this really is new territory and I will be fascinated to hear/read about your adventures. If you want to try to find more detail, then it may help to try looking deeper into the exception details, and looking into the console log trace on your mac.
For these two particular exceptions, I can confirm that both samples...
... although that is when I'm working on my Mac.

Resources