我正在与Android Studio 2.2 RC 2
合作。
在我的应用中,我收到错误消息:
Usage of API documented as @since 1.8+ less... (Ctrl+F1)
This inspection finds all usages of methods that have @since tag in their documentation.
This may be useful when development is performed under newer SDK version as the target platform for production.
我做了一些研究来尝试解决问题,我发现的第一个链接是:
Intellij - Unable to use newer Java 8 classes - Error : "Usage of API documented as @since 1.6+.."
它说要消除错误,您需要打开
File -> Project Structure -> Project Settings -> Modules -> "Your Module Name" -> Sources -> Language Level
并将其更改为所需的级别,即1.8或“项目默认”语言级别。
在Android Studio 2.2 RC 2
中,我看到File -> Project Structure
...,然后其他标题/标签与上面链接的解决方案中列出的标题/标签不同。而其他地方的其他解决方案都说做同样的事情……是否还有另一种方法来消除此错误,例如Android Studio 2.2 RC 2
?
此致
C。