回答
您必須關閉項目並從「歡迎使用Android Studio」頁面訪問默認首選項,然後您可以找到「註釋處理器」部分。
有關Android 2.2的其他問題(例如 enable Annotation Processors option in Android Studio 2.2)的更多信息,您還可以在其中找到其他提示,如從歡迎頁面中刪除al項目,使用無效緩存並重新啓動等。
無論如何,似乎龍目APT正常運行,不管無聊的消息。該錯誤已在https://github.com/mplushnikov/lombok-intellij-plugin/issues/264發佈。
我終於找到了調整!
看來問題在於當您在啓用註釋處理器之前創建項目之前。
退出Android Studio並編輯文件<your project folder>/.idea/compiler.xml
。
你會發現:
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
...
<annotationProcessing>
<profile default="true" name="Default" enabled="false">
<processorPath useClasspath="true" />
</profile>
</annotationProcessing>
</component>
</project>
您應該設置enabled
到true
和枯燥的消息消失!
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
...
<annotationProcessing>
<!-- This is the line where to set enabled to true -->
<profile default="true" name="Default" enabled="true">
<processorPath useClasspath="true" />
</profile>
</annotationProcessing>
</component>
</project>
好工作的人!完美的作品。 – dan
下可以找到文件的選項 - >其他設置 - >默認設置 - >構建,執行,部署 - >編譯器 - >註釋處理器從@Tudor流行
複製amswer 這是正確答案android-studio-2-3。 您可以在文件找到選項 - >其他設置 - >默認設置 - >構建,執行,部署 - >編譯器 - >註釋處理器
- Android的工作室 - 文件 - 關閉項目
- 配置 - 設置 - 構建,執行,部署 - 編譯器 - 註釋處理器 - 啓用註釋處理。
- 打開項目 - 生成 - 重建項目。
- 1. Android Studio 2.3啓動多個仿真器
- 2. Android Studio 2.3 sdk管理器未打開
- 3. Android 2.3 SIP API如何處理NAT?
- 4. Android Studio中缺少註釋處理
- 5. 如何在Android Studio中啓用ProGuard模糊處理?
- 6. 如何在android 2.3中啓用SIP API?
- 7. 如何在Visual Studio中啓用多處理器版本
- 8. Visual Studio 6處理器包啓用SSE2
- 9. 定義註解處理器
- 10. 如何使用批處理文件啓動Android Studio測試?
- 11. 如何在Android Studio中處理.gitignore?
- 12. Android 2.3 SDP解析器?
- 13. Android Studio 2.3中的獨立SDK管理器選項
- 14. 如何在android 2.3版本中處理方向?
- 15. Android Studio 2.3 Ubuntu 16.10仿真器無法啓動
- 16. 如何解決在IntelliJ中找不到註釋處理器?
- 17. Android studio - 手動運行註釋處理器
- 18. AndroidStudio - >在編輯器(lombok)中啓用註釋處理
- 19. 如何從Android Studio 2.3鏈接到.so?
- 20. Android Studio,如何處理adb錯誤?
- 21. Spring MVC註解和處理接口器
- 22. 如何處理服務重啓android
- 23. Android Studio 2.3 sdk管理器標籤灰顯
- 24. 在Android Studio 2.3中Android Manifest configChanges錯誤
- 25. 在Android Studio 2.3中獨家使用WebP代替PNG 2.3
- 26. 使用註釋處理器
- 27. 如何在Visual Studio中使用處理器寄存器?
- 28. 你如何在Java註解處理器集成到Java插件
- 29. 如何在Android Studio 2.3中使用JDK 7?
- 30. 如何在編譯期間逐步調試註解處理器?
看看這裏... [啓用Annotation Processor for Android 2.2](http://stackoverflow.com/questions/38642712/enable-annotation-processors-option-in-android-studio-2-2 ) –
不適用於我,我已經看到該線程 –
[Lombok需要註釋處理]的可能重複(https://stackoverflow.com/questions/38911888/lombok-requires-annotation-processing) – Nawrez