[android-developers] Re: Conversion to Dalvik format failed with error 1 [PROGUARD]

2011-11-15 Thread Michael A.
Did you ever find a solution to this problem? I've been getting what seems to be exactly the same issue ever since moving to ADT14/15 on my windows machine. I can sign on my Linux laptop, but nothing I do seems to work on Windows. -- You received this message because you are subscribed to the

[android-developers] Re: Conversion to Dalvik format failed with error 1 [PROGUARD]

2011-11-15 Thread Michael A.
Correction: Removing Proguard works to allow an export of the APK, but that is of course entirely useless. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: Conversion to Dalvik format failed with error 1 [PROGUARD]

2011-11-15 Thread Michael A.
Doh! And of course, right after posting this I finally found the issue. If you look in Proguard.bat, you will find the following line: call %java_exe% -jar %PROGUARD_HOME%\lib\proguard.jar %* Replace it with the following: call %java_exe% -jar %PROGUARD_HOME%\lib\proguard.jar %1 %2 %3 %4 %5

[android-developers] Re: Conversion to dalvik format failed with error 1 - is dexing logged?

2011-07-31 Thread Marcin Orlowski
Conclusion: if you face this, blame proguard that comes with r12 tools (v4.4). Simplest solution is to grab v4.6 from proguard website and just replace files in SDK\tools\proguard\lib from these found in 4.6 archive. Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you

Re: [android-developers] Re: Conversion to dalvik format failed with error 1 - is dexing logged?

2011-07-31 Thread Kostya Vasilyev
I ran into the same issue last night. This worked: http://stackoverflow.com/questions/6605971/android-sdk-tools-revision-12-has-problem-with-proguard-error-conversion-to-d Same workaround is also reported here: http://code.google.com/p/android/issues/detail?id=18359 -- Kostya 31.07.2011

Re: [android-developers] Re: Conversion to dalvik format failed with error 1 - is dexing logged?

2011-07-31 Thread Marcin Orlowski
On Jul 31, 2011 4:04 PM, Kostya Vasilyev kmans...@gmail.com wrote: http://code.google.com/p/android/issues/detail?id=18359 you mean .bat change? did not worked for me (plus afaik it's wrong approach). still it's worth updating proguard anyway - 4.4 is dated february, and 4.6 is lastest -- You

Re: [android-developers] Re: Conversion to dalvik format failed with error 1 - is dexing logged?

2011-07-31 Thread Kostya Vasilyev
Yep, a .bat file change fixed it for me (I also banged my head against the desk for a while, too - not sure if that had any effect). I actually used to use ProGuard 4.6, installed separately, but ADT 12 seems to always use its own version 4.4 (ignoring proguard.dir in local.properties). So,

[android-developers] Re: Conversion to dalvik format failed with error 1 - is dexing logged?

2011-07-30 Thread Marcin Orlowski
On 30 July 2011 15:28, Marcin Orlowski webnet.andr...@gmail.com wrote: Hi, Is there any easy way (with Eclipse) to find out what exactly caused this error? Project was building for ages just fine, and now it causes this error when I try to export signed apk. I am wondering what code exactly

[android-developers] Re: Conversion to Dalvik format failed with error 1 when using jmDNS.jar

2011-02-21 Thread Marcus Wolschon
Doesn't that mean that the code is compiled but the jar not included in the apk = class not found error at runtime unless jmDNS is a part of Android. On 17 Feb., 01:40, scott_ggle sch...@comcast.net wrote: I had resolved this compile error by adding JmDNS as user library. See tip posted by

[android-developers] Re: Conversion to Dalvik format failed with error 1 when using jmDNS.jar

2011-02-18 Thread scott_ggle
I had resolved this compile error by adding JmDNS as user library. See tip posted by CuteAndroid at http://www.cuteandroid.com/tips-for-android-developer-conversion-to-dalvik-format-failed-unable-to-execute-dex-null. I guess I could extract the source file and add them in my project. But that

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-12-23 Thread sumanth
Ok! I got it to work finally! (phew) It turned out that the problem lay with my JRE. Android needs only Oracle's JRE and my eclipse was pointing to IBM JRE. I installed the JDK and pointed eclipse to the JRE in oracle's java folder and the error was gone. Hope this helps someone else in future.

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-12-18 Thread sumanth
Hi Dimitris, I changed the build output to verbose. My eye didn't catch anything unusual in the logs: [2010-12-17 13:47:45 - HelloAndroid] Refreshing resource folders. [2010-12-17 13:47:45 - HelloAndroid] Starting incremental Pre Compiler: Checking resource changes. [2010-12-17 13:47:45 -

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-12-16 Thread sumanth
Hi Christopher, I looked up the build path and it contains only the library of android 2.2 (i tried it with other versions, including the new 2.3). Nothing seems to work, let me know if you/anyone have any ideas. Thanks Sumanth On Dec 7, 8:07 am, Christopher Lester whichsh...@gmail.com wrote:

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-12-16 Thread Dimitris
Check your project dependencies, go to Window - Properties - Android - Build and put it on Verbose. Then use the console to see (make sure Console view is Android instead of DDMS) and see if there is an error there. On Dec 15, 10:51 pm, sumanth ag.suma...@gmail.com wrote: Hi Christopher, I

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-12-08 Thread Christopher Lester
Sumanth - I had this error yesterday and found this helpful. Go to Project » Properties » Java Build Path » Libraries and remove all except the Android X.Y (in my case Android 2.2). click OK. Go to Project » Clean » Clean projects selected below » select your project and click OK. That should

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-08-11 Thread Kumar Bibek
Are you trying to include some third party libraries? Or something else? -Kumar Bibek http://techdroid.kbeanie.com On Aug 11, 6:15 am, Hiko hikosais...@gmail.com wrote: Hi, I faced to the serious problem when building my environment. I use below software for compiling. android SDK(android

[android-developers] Re: Conversion to Dalvik format failed with error 1

2010-08-11 Thread sws-vinpa
Start Eclipse from a shell with option -clean. sws-vinpa On Aug 10, 9:15 pm, Hiko hikosais...@gmail.com wrote: Hi, I faced to the serious problem when building my environment. I use below software for compiling. android SDK(android 2.1) eclipse 3.5.2 At first , this problem occurred on

[android-developers] Re: conversion to dalvik format failed with error 1

2009-07-10 Thread Ian
please someone help with this... i'm getting the same issue and I think it's preventing me from releasing my APK. It looks like I cannot build the apk w/o Eclipse using the debug key to sign it, but I need an unsigned apk. I've used the wizard, that's not the issue. The wizard just takes the

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-23 Thread n5r11
This is my strange scenario.. maybe it will help someone: 1. On Project/Build Automatically checked I'm not getting any errors. 2. When I uncheck Project/Build Automatically and build, I'm not getting any errors. 3. When I clean and build (with Project/Build Automatically unchecked) i get: no

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-13 Thread Danny
This seems to work, but now I'm getting Could not find myapp.apk! On May 2, 10:05 am, CnmJbm cnm...@gmail.com wrote: ok, it seems i fixed it on my environment. just delete the R.java (by refreshing the project) and rebuild the project. On May 2, 9:57 am, CnmJbm cnm...@gmail.com wrote: i

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-12 Thread jtaylor
I uninstalled/re-installed it and I Still have the same errors upon creation of a project. [2009-05-12 13:23:50 - Lucayan] no classfiles specified [2009-05-12 13:23:50 - Lucayan] Conversion to Dalvik format failed with error 1 - juan On May 11, 9:09 am, Thomas Lee aztho...@gmail.com wrote:

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-11 Thread Thomas Lee
Thanks Derek, after uninstall/re-install ADT, the annoying problem has disappeared. On May 8, 11:36 pm, Derek dlawl...@gmail.com wrote: I got this error frequently right after updating ADT.  Turned out that I had updated my ADT instead of uninstall/install.  I had to manually cleanse my

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-08 Thread Kamal Hasan
Hi My project was running perfectly and when I cleaned the project then It started to give the following error. [2009-05-08 12:47:24 - MobilChek] no classfiles specified [2009-05-08 12:47:24 - MobilChek] Conversion to Dalvik format failed with error 1 Pls help me in resolving this issue.

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-08 Thread kenjkelly
My guess is that the 1.5 release relies on something that gets built after it is needed. Thus the Clean fails but then it works on the next build. Can someone who worked on the Eclipse Plugin for 1.5 check that out? Incase it is important, I am using the 1.5 with Google libs selection. Ken

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-08 Thread Derek
I got this error frequently right after updating ADT. Turned out that I had updated my ADT instead of uninstall/install. I had to manually cleanse my eclipse install to get rid of references to 0.8 On May 8, 3:02 am, kenjkelly kenke...@kenkelly.com wrote: My guess is that the 1.5 release

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-07 Thread kenjkelly
This posting system is weird.. My reply to Justin about the problem, written the night before, appeared after my response the next day about Project Clean causing the problem... Ken On May 6, 2:20 am, kenjkelly kenke...@kenkelly.com wrote: I'm not sure I know what you mean Justin: I had a

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-06 Thread kenjkelly
I'm not sure I know what you mean Justin: I had a project that worked fine on earlier SDK's now it has the no classfiles specified Conversion to Dalvik format failed with error 1 after moving to 1.5. I created the AVD for 1.5 google, the same as the sdk I selected. I am using Java 1.6.0_12.

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-06 Thread kenjkelly
OK, This morning my 1.5 Android build worked (I did not get the Conversion to Dalvik format failed with error 1, no classfiles specified errors). I did a Project Clean... and build and the errors came back. I fake-modified a file and did a build with NO clean, and the errors did not occur.

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-03 Thread Berlin Brown
On May 2, 1:05 pm, CnmJbm cnm...@gmail.com wrote: ok, it seems i fixed it on my environment. just delete the R.java (by refreshing the project) and rebuild the project. On May 2, 9:57 am, CnmJbm cnm...@gmail.com wrote: i got the same error, TOO!!! May Day On Apr 28, 3:57 pm,

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-03 Thread dni_linux
I'm getting the same same error on my Mac. It happens to me *sometimes* when I create a new android project. However, deleting the project and trying again usually resolves the problem. Anyone have any other ideas??? Thanks. On Apr 28, 5:57 pm, chris.cap...@gmail.com chris.cap...@gmail.com

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-03 Thread Justin (Google Employee)
Make sure that you don't have hidden files or files without a file extension in your project's lib folder. There is a bug in 1.5_r1 that causes a compilation error if these types of files are in the lib folder. Cheers, Justin Android Team @ Google On Apr 30, 1:06 pm, dni_linux

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-03 Thread Justin (Google Employee)
Did you update your plugin? If so, did you create either a 1.1 AVD or a 1.5 w/Google Maps AVD? Cheers, Justin Android Team @ Google On May 2, 10:59 am, Berlin Brown berlin.br...@gmail.com wrote: On May 2, 1:05 pm, CnmJbm cnm...@gmail.com wrote: ok, it seems i fixed it on my environment.

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-02 Thread CnmJbm
i got the same error, TOO!!! May Day On Apr 28, 3:57 pm, chris.cap...@gmail.com chris.cap...@gmail.com wrote: Hi, I just updated to SDK 1.5 and all of my projects are failing to build with the following error: [2009-04-28 15:53:23 - Utilities] no classfiles specified [2009-04-28

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-02 Thread CnmJbm
ok, it seems i fixed it on my environment. just delete the R.java (by refreshing the project) and rebuild the project. On May 2, 9:57 am, CnmJbm cnm...@gmail.com wrote: i got the same error, TOO!!! May Day On Apr 28, 3:57 pm, chris.cap...@gmail.com chris.cap...@gmail.com wrote: Hi,

[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-02 Thread Raphael
For the record, I generally get the Conversion to Dalvik format failed with error 1 error when I do a checkout of an existing project in a new workspace. Doing Project Clean fixes it. R/ On Tue, Apr 28, 2009 at 3:57 PM, chris.cap...@gmail.com chris.cap...@gmail.com wrote: Hi, I just

[android-developers] Re: Conversion to Dalvik format failed with error 1

2009-02-19 Thread Alexey
Eclipse is 3.4 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to