Android SDK 1.5 "--core-library" build error问题解决方法

本文解决了一个常见的Android应用开发问题:当尝试将不适合Android平台的类(如来自桌面虚拟机的类)包含在应用中时,会出现特定的编译错误。文章详细解释了错误的原因,并提供了解决方案——通过修改工程目录下的`.classpath`文件来排除这些不合适的类。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如果你手工配置build path,把SDK1.5的android.jar加入到某些工程中,你可能会遇到下面的编译错误:


> Attempt to include a core VM class in something other than a core
> library.
> It is likely that you have attempted to include the core library from
> a desktop
> virtual machine into an application, which will most assuredly not
> work. If
> you really intend to build a core library -- which is only appropriate
> as
> part of creating a full virtual machine binary, as opposed to
> compiling an
> application -- then use the "--core-library" option to suppress this
> error
> message. If you go ahead and use "--core-library" but are in fact
> building
> an application, then please be aware that your build will still fail
> at some
> point; you will simply be denied the pleasure of reading this helpful
> error
> message.
>

这意味着你想把一个桌面VM中的类运用到android应用程序中,比如java.awt.*, java.swing.*, java.bean等。

可用android包参见:available packages on Android,这肯定是不行的。

为了解决这个问题,需要修改工程目录下的.classpath文件,把其中的path设置成下面的值即可:

<classpathentry kind="con"
path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值