Installation error: INSTALL_FAILED_OLDER_SDK

前端 未结 19 1687
太阳男子
太阳男子 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条回答
  •  Happy的楠姐
    2020-11-28 10:04

    Fix for new Android 6.0 Marshmallow Fixed my issue when I updated to API 23 (Android 6.0 Marshmallow) by updating the build tools version to 23.0.0 as follows:

    android {
        buildToolsVersion '23.0.0'
    ...
    

    And went to File > Project Structure , chose Properties tab then updated the Compile Sdk version to "API 23: Android 5.X (MNC)" and the Build tools version to "23.0.0"

提交回复
热议问题