Android Studio unexpected top-level exception in libGDX project - android

I have a fresh libGDX project, with gives above error message when try to build it.
Error:Execution failed for task ':android:dexDebug'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
D:\SDK_2015\build-tools\21.1.2\dx.bat --dex --no-optimize --output C:\Users\Ákos\Downloads\physics\android\build\intermediates\dex\debug --input-list=C:\Users\Ákos\Downloads\physics\android\build\intermediates\tmp\dex\debug\inputList.txt
Error Code:
1
Output:
UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.RuntimeException: C:\Users\Ă?kos\Downloads\physics\android\build\intermediates\classes\debug: file not found
It is strange, I have never seen similar to this. What can causes this? I am using the most recent 1.2 version of Android Studio.

Can suggest you to try several things:
On the path C:\Users\Ákos\Downloads... is this symbol Á, possibly not recognized by IDE. Also on second path as well. Try to avoid any of non-ASCII characters.
On the path C:\Users\Ă?kos\Downloads\physics\android\build\intermediates\classes\ remove folder classes. Then clean and rebuild project.
But in my opinion and experience and as other answers said this is because of symbols.

Related

Error: app:mergeClient_flavourDebugResources

I am building an adroid project using clean assemble command on Jenkins.
My build is failing each time I run showing this error. Can anyone help me or tell me how can I resolve error related to app: and proguard.
Here is the part of log that shows error.
Error: Some file crunching failed, see logs for details
:app:mergeClient_flavourDebugResources FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:mergeClient_flavourDebugResources'.
> Error: Some file crunching failed, see logs for details
You must be using some resource with unsupported characters in the file name. Check the names of your files in res folder of your project.
It can also happen sometimes if you are using 9-patch image in your project.
If you are using 9-patch image in the project then modify that image slightly with 9-patch editor of android studio and then try to build project.

Findbugs fails with "java.io.IOException: No files to analyze could be opened"

I run an Android Studio v2.1.3 and use ./gradlew build to detect errors in the Android project with the Findbags.
Recently an error started to come up:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':process:customFindbugs'.
> java.io.IOException: No files to analyze could be opened
There are enough disk space and RAM and beside that I don't see any particular reason for that error to occur. Please help to elaborate on this problem.
If you use 3.2, please take a note that
classes = files("$project.buildDir/intermediates/classes")
should be
classes = files("$project.buildDir/intermediates/javac")
I had the same problem after reorganizing my gradle files.
This is the actual command:
gradlew --stacktrace assemble findbugs
Accidentally, I did this:
gradlew --stacktrace findbugs
With the first command no error arises, with later it shows "java.io.IOException: No files to analyze could be opened".
To cut a long story short, maybe your files weren't compiled (yet).

Android debug error

I am new in android programming.
I got an error while trying to run my project as stated below. May you please help me?
Error:Execution failed for task ':app:buildInfoDebugLoader'.
Exception while doing past iteration backup : Source C:\Users\Mbali\AndroidStudioProjects\Prototype\app\build\intermediates\builds\debug\10522583303570\classes.dex and destination C:\Users\Mbali\AndroidStudioProjects\Prototype\app\build\intermediates\builds\debug\10522583303570\classes.dex must be different
Just clean your project using Build -> clean project and rebuild it and then run

Android Studio and Windows 8

I have a Windows 8.1 system with latest Android-Studio.
Now, when I create a new project, if I set it's path to be on partition Local Disk F, I will receive errors.
If I set the path of the project to be on Local Disk C, no errors appear.
What is the solution to this?
The errors that appear, are like:
Error:Execution failed for task ':app:preDexDebug'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
C:\Program Files (x86)\Android\android-studio\sdk\build-tools\19.1.0\dx.bat --dex --output F:\==Android\TestingGradle2\app\build\intermediates\pre-dexed\debug\support-v4-19.1.0-e311e493b238b75da4095bd5ee7b69d76d73dc42.jar C:\Program Files (x86)\Android\android-studio\sdk\extras\android\m2repository\com\android\support\support-v4\19.1.0\support-v4-19.1.0.jar
Error Code:
1
Output:
UNEXPECTED TOP-LEVEL EXCEPTION:
...
file not found...
So the real problem is with the location of the Project
What can I do to solve this?
I cannot have all my dummy projects in Local Disk C because it is a SSD drive and it is small.
I noticed that all my folders on my F drive are read only, and do not have writing access priviledges, so I did the following steps so far:
I went to Properties->Sharing->Advanced Sharing->Permissions for the F drive and set them to Full Access.
Then I went to Properties-> Security and made sure all users listed there have Full Access to the drive
After this, still no change. The error keeps appearing every time I try a new project or old one that is located on that F drive.
Please help.
Thank you

Android Studio will not compile

I get this error when trying to compile a project
Execution failed for task ':ToDo:dexDebug'.
com.android.ide.common.internal.LoggedErrorException: Failed to run command:
E:\Android Studio\sdk\build-tools\19.0.1\dx.bat --dex --output C:\AndroidStudioProjects\ToDo\ToDo\build\dex\debug C:\AndroidStudioProjects\ToDo\ToDo\build\classes\debug C:\AndroidStudioProjects\ToDo\ToDo\build\dependency-cache\debug
Error Code:
1
Output:
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
Tried restarting but it will not compile. Any help?
I worked on a project that compiled/run fine with Android Stuido 0.8.2. After openening an second project, I got the error on both project without changing the first one. So the issue must be inside the android-studio configuration, not the project ones. In my case this workaround helped me:
Install the android-studio a second time into an other directory (I used Android-Studio 0.8.0). Open your project with this studio and run it. Ater this successful execution, close the android-studio and delete its directory (Android-Studio 0.8.0). Now the normal android-studio is 'cured' (0.8.2).
Hope it will help you too.

Categories

Resources