在 Android2.2 平台上构建的应用程序无法在 2.3.3 平台的模拟器上运行
我是安卓新手,请帮助我...... 我在 android 2.2platform 中构建了一个应用程序,但是当我在 2.3.3 及更高版本的模拟器上测试它时,它无法正常工作。 模拟器有什么问题吗?或者我必须使用 2.3.3 平台构建相同的应用程序......???
I am new in android, Please help me ....
I build an application in android 2.2platform but when i test it on an emulator of version 2.3.3 and higher it is not working .
Is there any problem of emulators or I have to build the same application with the 2.3.3 platform .....???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的 AndroidManifest.xml 具有如下所示的行:
本质上,这表示“我希望以 2.2 设备为目标,但应用程序应在最高版本为 2.3.4 的任何设备上运行。”
您可以在http://developer 获取有关uses-sdk 的更多信息.android.com/guide/topics/manifest/uses-sdk-element.html
Make sure that your AndroidManifest.xml has a line like the following:
This says, essentially, "I would like to target 2.2 devices, but the application should run on any devices up to 2.3.4."
You can get more information about uses-sdk at http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
请检查您的清单文件,其中是否有类似的代码?如果是,则删除该行,然后对其进行测试或设置您想要运行应用程序的级别。
Please check your Manifest file in that is there any code like ? If yes then remove that line and then test it or set that at which level you want to run your application.