Android : INSTALL_FAILED_MISSING_FEATURE

こ雲淡風輕ζ 提交于 2019-12-03 09:15:39

REMOVE BELOW USES FROM YOUR MANIFEST FILE & TRY IT.

<uses-feature android:name="android.hardware.screen.landscape" />  

THIS HAPPENS COZ YOUR EMULATOR DOES'NT SUPPORT THIS FEATURES, OR TRY THIS FEATURES IT IN HIGHER VERSION API EMULATOR.

Can you post your manifest file? You're trying to use a feature( <uses-feature> ) the emulator doesn't have. My guess would be the camera.

Debug this by removing each uses-feature line one at a time until it installs without the error. The last line you removed will be the one causing this.

Are you using Google Maps, geocoding or anything related to that? If so, you should go to Project Properties > Android and link against the Google APIs for your desired API level.

If not using maps, what is the full error trace?

Satyam

in android manifest add features android.hardware.screen.landscape to make app in horizontal view.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!