Android packaging issue

I am using the libgdx framework in android. I copied gdx-helloworld.zip from the http://code.google.com/p/libgdx/downloads/list link and imported it into eclipse. but the problem is that I could not start the application.

Description - Conversion to Dalvik format failed with error 1 Resource - gdx-helloworld-android Location - Unknown type - Android packaging problem

I do not know where the problem is. any pls help me solve pbm

+4
source share
2 answers

This preoblem is mainly associated with some classes with the same name and the same package in your applications and libraries. do one, change your library package to another, and then try to export a jar from it.

0
source
1) Uncheck Build Automatically Option from Project menu . 2)manually clean and build project. Maybe this will solve your problem. Note L its not for sure but my problem was resolved . 
-1
source

Source: https://habr.com/ru/post/1333667/


All Articles