[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

2009-05-03 Thread dario
The 'conversion to Dalvik format / use --core-library' compilation error which is being widely reported in several threads here and elsewhere is not only presenting itself with third party unsupported classes. When upgrading to 1.5 from 1.1 you can also get this error message if you fail to

[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

2009-04-10 Thread Mattaku Betsujin
Did you try on SDK/emulator, or on real HTC G1? As far as I have tried, I never got video to work on the emulator. On Thu, Apr 9, 2009 at 9:34 PM, Nithin Varamballi nithi...@gmail.comwrote: Thank you sir.. Can you know how live video streaming can be done... I tried demo sample But i give

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

2009-04-10 Thread Nithin Varamballi
Hi I tried in SDK emulator. Even i have Same problem like yours. Till now i didnt run video on emulator Thank You Nithin N V --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group.

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

2009-04-09 Thread Romain Guy
You cannot use Java MediaFramework with Android. On Thu, Apr 9, 2009 at 9:09 PM, Nithin nithi...@gmail.com wrote: Hi to all            I include JMF in my application. When i run my application the following type of error will occurring... [2009-04-09 16:20:03 - nithin] trouble

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

2009-04-09 Thread Nithin Varamballi
Thanks for reply But i saw in site http://www.tomgibara.com/android/camera-source In that they use the JMF --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

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

2009-04-09 Thread Romain Guy
They don't use the JMF on Android, they use JMF on the dekstop to broadcast images to the emulator. On Thu, Apr 9, 2009 at 9:24 PM, Nithin Varamballi nithi...@gmail.com wrote: Thanks for reply  But i saw in site http://www.tomgibara.com/android/camera-source In that they use the JMF

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

2009-04-09 Thread Nithin Varamballi
Thank you sir.. Can you know how live video streaming can be done... I tried demo sample But i give error likeCannot play the video. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[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

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

2008-07-05 Thread Oscar Castaneda
Hi Taras, I think you're right, but I find weird since I have retrotranslated all classes using the backport and target options. This is how I'm running retrotranslator now: $ java -jar ../Retrotranslator-1.2.6-bin/retrotranslator-transformer-1.2.6.jar -srcdir srcdir -backport

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

2008-07-05 Thread taras . puchko
Hi Oscar, The command line looks OK, but the embed option cannot be used there since your srcdir does not point to the root package of your classes. So don't use this option but add retrotranslator-android-1.2.6.jar to your project instead. If the problem persists point srcdir exectly to the root

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

2008-07-03 Thread Taras Puchko
Hi Oscar, It looks like Retrotranslator haven't translated the ConversationProcessor class if you see the following stack trace: java.lang.UnsupportedOperationException: native method not implemented at java.lang.Class.getDeclaredAnnotations(Native Method) at

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

2008-06-19 Thread Taras Puchko
I'm glad Retrotrotranslator works for you Oscar. If you just want to get rid of java.rmi.Remote you may replace it with java.lang.Cloneable using the folowing Retrotranslator option: -backport java.rmi.Remote:java.lang.Cloneable But in case you have some important code using the java.rmi package

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

2008-06-18 Thread Oscar Castaneda
Hi Taras, Thanks for your help. I think your suggestions resolved the problem, even though I'm getting other errors now. By mistake I sent the email only to you which I think resulted in me being the only recipient of your response. I include your response and my follow-up below, as someone else

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

2008-04-03 Thread Taras Puchko
If your application does not declare or use annotations itself you may translate the dependency before adding it to the Eclipse project: java -jar retrotranslator-transformer-1.2.6.jar -target 1.5 -embed support -reflection safe -stripannot -srcjar gdata-media-1.0.jar Regards, Taras. On 28

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

2008-04-03 Thread Taras Puchko
I've made a mistake in my previous post, the correct command is the following: java -jar retrotranslator-transformer-1.2.6.jar -target 1.5 - stripannot -embed support -reflection safe -classpath retrotranslator- android-1.2.6.jar -srcjar gdata-media-1.0.jar To use annotations in your code

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

2008-04-02 Thread Sebi
its simpler to use a and build-script. I have generated my build.xml with this tool: http://code.google.com/android/intro/installing.html#otherides and then added this target http://retrotranslator.sourceforge.net/#android and it worked fine. Also with eclipse

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

2008-03-25 Thread Adriano Crestani
Yes, I had a similar problem, when trying to convert Apache Tuscany jars. A lot of problems with annotations. I only would like that these error outputs could tell more about the errors :S Adriano Crestani On Mar 25, 2:19 am, JuhaK [EMAIL PROTECTED] wrote: Hi, Gdata API java libraries in