Installation error: INSTALL_FAILED_OLDER_SDK

前端 未结 19 1660
太阳男子
太阳男子 2020-11-28 09:37

I am new to Android development and I want first to get the Hello World application running. I am using Eclipse IDE and the Android 4.0.3 version 15 SDK. I copi

19条回答
  •  温柔的废话
    2020-11-28 10:05

    In my case I edited a project having this in the AndroidManifest.xml file, and which was ginving me the above error, at runtime:

    
    

    What I did just, was to change minSdkVersion="17", to minSdkVersion="16". My resulting tag was:

    
    

    Now I'm not getting the error anymore..

    Hope this helps

提交回复
热议问题