Android Unable to resolve target 'android-X'

weixin_34054866發表於2013-04-18

今天匯入一個Android的例子程式,出現了Unable to resolve target 'android-8'的錯誤。剛開始以為是沒匯入包或者是phoneGap沒配置好。可是折騰了好久還是報錯。最後google之後才發現原來是ADK版本不同。

ADK版本:---API Level對應關係(注意高版本不一定是相容低版本的)

android2.3.4---10
android2.3.1---9===Gingerbread
android2.2---8===Froyo
android2.1---7===Eclair
android2.0.1---6===Eclair
android2.0---5===Eclair
android1.6---4===Donut
android1.5---3===Cupcak
android1.1---2 
android1.0---1

解決辦法:1、修改project.properties裡的target=android-8(若是android2.2開發的情況下)

                 2. 專案右鍵開啟專案屬性,在左側選擇Android,在右側選擇具體的android版本。
                    選擇好後,再專案右鍵,在android Tools下選擇Fix Project Properties

                3. 如果沒有default properties, 自己建下,然後target=android-10

JDK版本:
1.5只支援繼承Class的子類用@overwrite覆蓋方法
1.6支援實現介面的子類用@overwrite
  解決辦法:window -->preferences -->java -->compliance-->compiler 在右側,選擇為1.6或其他的,點選apply,點選ok.(1.6向下相容)
新增額外的庫支援:

首先要加入android.jar這個包,右鍵工程Buildpath,

    java buildpath,選擇libraries

    在右邊的按鈕中點選“AddLibrary”

    選擇“Userlibrary”,點選“下一步”

    點選“Userlibrarys”按鈕

    在出現的介面中點選“New..”按鈕

    在彈出的介面中隨便起一個名字,點選“確定”

    點選“Addjars”按鈕選擇第三方jar包,點選“確定”完成操作。

相關文章