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
Copy file name to clipboardExpand all lines: Documentation/guides/messages/README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,15 @@ ms.date: 01/24/2020
69
69
+[XA0122](xa0122.md): Assembly '{assembly}' is using a deprecated attribute '[assembly: Java.Interop.DoNotPackageAttribute]'. Use a newer version of this NuGet package or notify the library author.
70
70
+ XA0123: Removing {issue} from {propertyName}. Lint {version} does not support this check.
71
71
+[XA0124](xa0124.md): Interpreter is not supported by the x86 ABI
72
+
+[XA0125](xa0125.md): `{Project}` is using a deprecated debug information level.
73
+
Set the debugging information to Portable in the Visual Studio project property pages or edit the project file in a text editor and set the 'DebugType' MSBuild property to 'portable' to use the newer, cross-platform debug information level.
74
+
If this file comes from a NuGet package, update to a newer version of the NuGet package or notify the library author.
75
+
+[XA0126](xa0126.md): Error installing FastDev Tools. This device does not support Fast Deployment. Please rebuild your app using `EmbedAssembliesIntoApk = True`.
76
+
+[XA0127](xa0127.md): There was an issue deploying {destination} using {FastDevTool}. We encountered the following error {output}. Please rebuild your app using `EmbedAssembliesIntoApk = True`.
77
+
+[XA0128](xa0128.md): Stdio Redirection is enabled. Please disable it to use Fast Deployment.
78
+
+[XA0129](xa0129.md): Error deploying `{File}`. Please disable fast deployment in the Visual Studio project property pages or edit the project file in a text editor and set the 'EmbedAssembliesIntoApk' MSBuild property to 'true'.
79
+
+[XA0130](xa0130.md): Sorry. Fast deployment is only supported on devices running Android 5.0 (API level 21) or higher.
80
+
Please disable fast deployment in the Visual Studio project property pages or edit the project file in a text editor and set the 'EmbedAssembliesIntoApk' MSBuild property to 'true'.
72
81
73
82
## XA1xxx: Project related
74
83
@@ -233,6 +242,7 @@ and `NNN` is a 3 digit number indicating the type of the unhandled `Exception`.
This issue happens when you are trying to use fast deployment on a device which
11
+
does not support it. Fast deployment requires features which are not available
12
+
on devices running API 20 or lower. The Fast Deployment system makes use of the
13
+
[`run-as`](https://android.googlesource.com/platform/system/core.git/+/refs/heads/master/run-as/run-as.cpp#42) feature of the Android OS. This feature was either not available or had
14
+
limited capabilities in API 20 and earlier.
15
+
16
+
## Solution
17
+
18
+
Disable Fast Deployment by setting `EmbedAssembliesIntoApk = True` in your .csproj.
19
+
Or turn off `Fast Deployment` in the IDE. You will still be able to debug on the device,
20
+
all the required files will be packaged inside the .apk.
If you encounter this issue something unexpected happened with the Fast Deployment
11
+
native tooling. This is most likely to be a native crash.
12
+
13
+
## Solution
14
+
15
+
To work around the issue disable Fast Deployment by setting `EmbedAssembliesIntoApk = True`
16
+
in your .csproj. Or turn off `Fast Deployment` in the IDE. You will still be able to debug
17
+
on the device, all the required files will be packaged inside the .apk.
18
+
19
+
In addition raise an issue at [https://github.com/xamarin/xamarin-android/issues/new/choose](https://github.com/xamarin/xamarin-android/issues/new/choose). Please provide the deployment log and as much detail as possible.
This issue happens when you are trying to use fast deployment on a device which
10
+
does not support it. In this case both the normal and backup types of fast
11
+
deployment failed. The Fast Deployment system makes use of the
12
+
[`run-as`](https://android.googlesource.com/platform/system/core.git/+/refs/heads/master/run-as/run-as.cpp#42) feature of the Android OS. This feature was either not available or had
13
+
limited capabilities in API 20 and earlier
14
+
15
+
## Solution
16
+
17
+
Disable Fast Deployment by setting `EmbedAssembliesIntoApk = True` in your .csproj.
18
+
Or turn off `Fast Deployment` in the IDE. You will still be able to debug on the device,
19
+
all the required files will be packaged inside the .apk.
0 commit comments