Skip to content

Commit 025452c

Browse files
committed
Fix missing code
1 parent b054f16 commit 025452c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Xamarin.Android.Build.Tasks/Tasks/ReadAndroidManifest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public override bool RunTask ()
5555
UseEmbeddedDex = value;
5656
}
5757

58-
text = app.Attribute (androidNs + "testOnly");
58+
text = app.Attribute (androidNs + "testOnly")?.Value;
5959
if (bool.TryParse (text, out value)) {
6060
IsTestOnly = value;
6161
}

0 commit comments

Comments
 (0)