Skip to content

Commit f8ab57a

Browse files
committed
$(LatestSupportedJavaVersion)=17.0.99!
We got to the point of running unit tests on CI (yay!), which promptly started erroring out because of XA0030! error XA0030: Building with JDK version `17.0.7` is not supported. Please install JDK version `11.0`. See https://aka.ms/xamarin/jdk9-errors Update `$(LatestSupportedJavaVersion)` so that tests *can* run.
1 parent 67d642f commit f8ab57a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Xamarin.Android.Build.Tasks/Xamarin.Android.Common.props.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
1010
<CopyNuGetImplementations Condition=" '$(CopyNuGetImplementations)' == ''">true</CopyNuGetImplementations>
1111
<YieldDuringToolExecution Condition="'$(YieldDuringToolExecution)' == ''">true</YieldDuringToolExecution>
12-
<LatestSupportedJavaVersion Condition="'$(LatestSupportedJavaVersion)' == ''">11.0.99</LatestSupportedJavaVersion>
12+
<LatestSupportedJavaVersion Condition="'$(LatestSupportedJavaVersion)' == ''">17.0.99</LatestSupportedJavaVersion>
1313
<MinimumSupportedJavaVersion Condition="'$(MinimumSupportedJavaVersion)' == ''">1.6.0</MinimumSupportedJavaVersion>
1414
<AndroidVersionCodePattern Condition=" '$(AndroidUseLegacyVersionCode)' != 'True' And '$(AndroidVersionCodePattern)' == '' ">{abi}{versionCode:D5}</AndroidVersionCodePattern>
1515
<AndroidResourceGeneratorTargetName>UpdateGeneratedFiles</AndroidResourceGeneratorTargetName>

0 commit comments

Comments
 (0)