You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a new XA0117 warning which will inform users if they are using a
`$(TargetFrameworkVersion)` value which will be deprecated "soon".
In our next version our minimum supported `$(TargetFrameworkVersion)`
will be v4.4 (API-19), and support for v2.3 (API-10) will be removed.
Copy file name to clipboardExpand all lines: src/Xamarin.Android.Build.Tasks/Tasks/ResolveAndroidTooling.cs
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,8 @@ public override bool Execute ()
190
190
Log.LogCodedWarning("XA0113",$"Google Play requires that new applications must use a TargetFrameworkVersion of v8.0 (API level 26) or above. You are currently targeting {TargetFrameworkVersion} (API level {AndroidApiLevel}).");
191
191
if(apiLevel<26)
192
192
Log.LogCodedWarning("XA0114",$"Google Play requires that application updates must use a TargetFrameworkVersion of v8.0 (API level 26) or above. You are currently targeting {TargetFrameworkVersion} (API level {AndroidApiLevel}).");
193
+
if(apiLevel<19)
194
+
Log.LogCodedWarning("XA0117",$"The TargetFrameworkVersion {TargetFrameworkVersion} is deprecated. Please update it to be v4.4 or higher.");
0 commit comments