在Netbeans中设置Android项目的Java源/目标值?

时间:2016-07-03 19:05:29

标签: android netbeans

嗯,我有一个非常简单的问题。我目前为 Netbeans 安装了 NBAndroid 插件。 一切正常。如果没有我不能使用Lambdas和Co(版本1.5 )的事实。我试图在项目属性中更改此值,但没有一种可能性;不是吗?

[javac] warning: [options] source value 1.5 is obsolete and will be removed in a future release
[javac] warning: [options] target value 1.5 is obsolete and will be removed in a future release
[javac] warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.

感谢您的建议!! :)

1 个答案:

答案 0 :(得分:0)

在项目树中找到ant.properties,并在其中添加以下两行代替1.8,使用您拥有的Java SDK版本。它应该大于1.5和当前版本(1.8)。

java.target=1.8
java.source=1.8

希望它有所帮助。