Unable to resolve target 'android-16'

后端 未结 13 1832
广开言路
广开言路 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:25

    To resolve the problem of "Unable to resolve target 'android-16'" set the targetSDKversion for library project for example "android-support-v7-appcompat".

    1. Expand the library project
    2. Open manifest file from the library (not the one in your application)
    3. Under the tag specify the "Target SDK version" to version of SDK installed (example to 18)
    4. Rebuild the library and application ( or restart Eclipse)

    That should solve it.

    enter image description here

提交回复
热议问题