我正在尝试将Eclipse Mac中的Android项目带到PC上。
虽然现在终于编译了所有东西 - 但我得到了一个“类未找到错误”的应用程序子类。
这就是我对应用程序子类的意思:(来自文档)
android:name
The fully qualified name of an Application subclass implemented for the application. When the application process is started, this class is instantiated before any of the application's components.
The subclass is optional; most applications won't need one. In the absence of a subclass, Android uses an instance of the base Application class.
这是我的清单:
<application
android:name="com.xxx.MyClassToBeInstantiated"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
...
PC上有什么不同吗?
非常感谢
答案 0 :(得分:0)
真奇怪 - 在PC上增加Eclipse的内存后,这个错误就消失了。可能由于内存限制而无法正确编译。