Unable to resolve target 'android-16'

后端 未结 13 1833
广开言路
广开言路 2020-12-01 01:02

I am using Android 4.2.2. After installing the latest SDK, when I open the eclipse I could see all the projects having the problem during the build. Following is the error i

13条回答
  •  星月不相逢
    2020-12-01 01:19

    Unable to resolve target 'android-16'

    Make sure which version your are using and set that version in the mentioned files

    To solve this problem we need to change 3 files as follows.

    project.properties (target=android-18)

    AndroidManifest.xml (android:targetSdkVersion="18")

    \bin\AndroidManifest.xml (android:targetSdkVersion="18")

    As mentioned above the 3 files has the same version number.

提交回复
热议问题