Android 包和清单中的通用类
我想在我的 android 包中有一个普通的类文件,它不是一个组件,但将被一个活动使用。这是允许的吗?如果需要,如何将其添加到清单中?
现在它不是我的清单的一部分,我在 Android 项目中收到“INSTALL_PARSE_FAILED_MANIFEST_MALFORMED”错误,不知道是否是因为这个通用类文件。
谢谢
I want to have a normal class file in my android package that is not a component but will be used by an activity. Is this allowed? How do I add this in the manifest if required?
Right now it is not part of my manifest and I am getting an 'INSTALL_PARSE_FAILED_MANIFEST_MALFORMED' error in my Android project and don't know if it's because of this generic class file.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
你没有把它放在清单中。
Yes.
You don't put it in the manifest.
不需要添加到清单中。您可以根据需要拥有任意数量的“正常课程”(正常情况下,我认为这些课程不会扩展活动)。
安装过程中请仔细检查 LogCat 以检查问题所在。
It's not needed to add to the manifest. You can have as many "normal classes" as you wish (by normal i suppose that are classes that do not extend activity).
Take a lot at LogCat during install to check what the problem is.