我是eclipse,Java和Android开发的新手。在过去一周的大部分时间里,我花了大量时间去编译几个.apk来查看热门应用程序的源代码。当我尝试在Eclipse中使用模拟器运行程序时,我在每个项目上都会出现以下错误。我按照一本书中的教程开始了一个新项目,认为在进行反编译时会出现问题并且同样的问题仍然存在......
java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.linearlayout/com.linearlayout.MainActivity}:
java.lang.ClassNotFoundException: Didn't find class
"com.linearlayout.MainActivity" on path: DexPathList
[[zip file "/data/app/com.linearlayout-1.apk"],nativeLibraryDirectories=
[/data/app-lib/com.linearlayout-1, /system/lib]]
我查看了Google搜索中的每一个点击,并完成了每个推荐的修复无济于事。 我已经完成了以下操作......
Cleaning and rebuilding the projects.
Properties and adjusted settings in 'Java Build Path'
Added the .jar to the build path.
我似乎无法纠正这个错误,我觉得它很简单,我忽略了。 任何帮助将不胜感激,谢谢你的时间。
-Kyle