2013-03-09 8 views
5
out/target/common/obj/PACKAGING/public_api.txt:4316: error 5: Added public field android.app.admin.DevicePolicyManager.PASSWORD_QUALITY_MOVEMENT 


****************************** 
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.txt by executing the following command: 
     make update-api 

     To submit the revised current.txt to the main Android repository, 
     you will need approval. 
****************************** 

więc próbowałem dodać @hide adnotacji do mojego zmiennej składowej, ale to tylko dać mi inny błąd:budynku zmodyfikowany AOSP wyrzuca błąd (Próbując zmienić API)

frameworks/base/core/java/android/app/admin/DevicePolicyManager.java:233: cannot find symbol 
symbol : class hide 
location: class android.app.admin.DevicePolicyManager 
    @hide 

Jak mogę Rozwiąż ten problem?

Odpowiedz

6

Popełniłem błąd korzystania @hide takiego jak @Override, ale trzeba go używać w komentarzu JavaDoc:

/** 
    * @hide 
    */ 
+0

Świetne odkrycie ... –

+1

Patrz „@hide” używany jest tutaj http: // code.metager.de/source/xref/android/4.0.3/frameworks-base/core/java/android/bluetooth/BluetoothDevice.java –

+0

Musisz przeczytać ciekawe rzeczy na temat @hide w Androidzie Zgodność Definicji @ source.android. com/compatibility/4.0/android-4.0-cdd.pdf –

Powiązane problemy