본문 바로가기
안드로이드

[Android] Full Build시에 Java API를 추가하거나 수정한 경우

by 호군 2011. 3. 3.
반응형
링크 : http://hsnote.tistory.com/129


java api를 추가하거나 수정한 경우 그냥 make를 하게 되면  아래와 같은 Error Message가 나오게 된다.

You have tried to change the API from what has been previously approved.

To make these errors go away, you have two choices:
   1) You can add "@hide" javadoc comments to the methods, etc. listed in the
      errors above.

   2) You can update current.xml by executing the following commands:

         p4 edit config/api/current.xml
         make update-api

      To check in the revised current.xml, you will need OWNERS approval.

이럴때는 아래와 같이 한다.
$make update-api 
$make
반응형