`
zhengjj_2009
  • 浏览: 153173 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Conversion to Dalvik format failed with error 1 剖析与解决之道

 
阅读更多

该文章摘自国外论坛  

  This error also comes when you change target platform or changing workspace or some library and it will be fixed by doing clean and rebuild. But i was not able to find exact reason behind this error what is dalvik format then have realized that i need to read some documentation of android application framework and about dalvik virtual Machine. What is Dalvik Format ? Dalvik is a virtual machine on Android OS which is register based while other Virtual machines are stack based. Dalvik Virtual Machine is a register based VM is optimized for low memory and processing retirements and OS can run multiple instance of VM to provide isolation of processes. Dalvik VM actually not executes java byte code classes but it executes Dex (Dalvik Execution Format) format classes. To convert java class to Dex android sdk provides DX tool which converts regular java byte code classes to .dex format classes. Dex file contains more than one class and usually size is less than normal java compressed jar file. Why “conversion to dalvik format failed with error 1” occurs? But this DX tool can not convert all java classes to dex format then this error occurs. In my case when i was getting error because there are some class which are using Java standard edition references and can not converted to dex. Generally it will convert all J2Me lib to dex format. Second scenario is that when you are changing target platform or work space then there might be some inconsistency in build and it was fixed by just cleaning and rebuilding workspace. Solution So please clean your project and rebuild it when you are getting this exception but when some classes which can not be converted to dex format are used then you can not use those classes in Android application.

分享到:
评论

相关推荐

    丢失Android系统库或者Conversion to Dalvik format failed with error 1错误的解决方法

    本文分析了丢失Android系统库或者Conversion to Dalvik format failed with error 1错误的解决方法。分享给大家供大家参考,具体如下: 在eclipse开发Android项目时出现的很多问题都可以使用Project———>clean来...

    Andriod开发中引入jar包的正确方式介绍

    本文将详细介绍在Android开发中引入jar包的正确方法,避免上述提到的"conversion to dalvik format failed with error 1"这类错误。 首先,我们来分析错误的原因。当使用Eclipse进行Android开发,并尝试通过"Add ...

    Android开发中Eclipse报错及对应处理方法总结

    本文较为详细的总结了Android开发中Eclipse报错及对应处理方法。分享给大家供大家参考,具体如下:...附: 网上其他处理方法:《丢失Android系统库或者Conversion to Dalvik format failed with error 1错误的解决方法》

    Proguard5.1

    Android项目导出时报错:conversion to dalvik format failed with error 1,用下载的Proguard将lib和bin覆盖eclipse下的sdk\tools\proguard的lib和bin文件夹,然后重新导出就成功了

    Android 错误解决

    ### Android错误解决:Conversion to Dalvik format failed: Unable to execute dex: Wrapper was not properly loaded first 在Android开发过程中,开发者可能会遇到多种类型的错误提示。其中,“Conversion to ...

    fatal error LNK1123: failure during conversion to COFF完美解决链接

    对于 fatal error LNK1123: failure during conversion to COFF错误,网上很多都是说把什么“是”改成“否”,其实都是治标不治本。这里有个链接,让你清楚知道为啥出错,怎么解决。记得保留哦~

    解决安装vs2012后vs2010 LINK : fatal error LNK1123: failure during conversion to COFF

    解决安装vs2012后vs2010 LINK : fatal error LNK1123: failure during conversion to COFF Wrong version: 03/18/2010 01:16 PM 31,048 cvtres.exe Correct version: 02/21/2011 06:03 PM 31,056 cvtres.exe

    android中导入低版本project可能会遇到的编译问题

    另一个常见的问题是“Conversion to Dalvik format failed with error 1”。这通常发生在项目依赖的某些库或JAR文件与Dalvik虚拟机的兼容性上,尤其是在从较低版本的SDK升级时,这些库可能未被正确处理或与新版本的...

    AndroidStudio利用android-support-multidex解决64k的各种异常

    Conversion to Dalvik format failed: Unable to execute dex: method ID not in [0, 0xffff]: 65536 或者 UNEXPECTED TOP-LEVEL EXCEPTION:  java.lang.IllegalArgumentException: method ID not in [0, 0xffff]: ...

    font-spider, Smart webfont compression and format conversion tool.zip

    **font-spider:智能Web字体压缩与格式转换工具** 在网页设计中,字体的美观性和可读性对用户体验至关重要。然而,引入丰富的Web字体(如SVG、WOFF、EOT和TTF)会显著增加页面加载时间,影响网站性能。为了解决这一...

    AlgoLab Raster to Vector Conversion SDK

    AlgoLab Raster to Vector Conversion SDK 以动态链接库(dll)实现AlgoLab Raster to Vector Conversion Toolkit将光栅图转换为矢量图的所有功能。它也提供Raster Vector ActiveX, VB Com工具格式的界面。 ...

    Android 掌上校园.zip

    如果报错:Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Landroid/support/annotation/AnimRes;请删掉PalmCampus工程下lib包里的android-support-v4.jar】

    Android环境以及配置文件

    - 创建完成后,可能出现"Conversion to Dalvik format failed with error 1"的错误,此时只需点击`Project` -> `Clean`即可解决。 - 如果无法直接运行工程,可能是因为缺少模拟器。打开命令行,输入`android ...

    android中导入低版本project可能会遇到的问题

    ### 二、Dalvik格式转换失败:`Conversion to Dalvik format failed with error 1` 这个错误通常发生在尝试使用较低版本的SDK编译项目时,特别是在某些特定的API级别下。错误表明在将Java字节码转换为Dalvik可执行...

    Android项目源码蚌埠掌上校园学生项目.rar

    如果报错:Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Landroid/support/annotation/AnimRes;请删掉PalmCampus工程下lib包里的android-support-v4.jar

    Model Conversion Error(解决方案).md

    Model Conversion Error(解决方案).md

    Document Conversion Error(解决方案).md

    Document Conversion Error(解决方案).md

    android正确导入jar包

    1. **转换为Dalvik格式失败**:控制台报错“conversion to Dalvik format failed with error 1”,并且项目上会出现红色交叉图标,尽管项目本身没有语法错误。 2. **APK文件丢失**:执行`clean`操作后,项目的`bin`...

Global site tag (gtag.js) - Google Analytics