-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error deploying Android App : Command Too Long #5710
Comments
Some background on this. For d16-9 we had to completely re-write the fast deployment system, This is because API 30 no longer supports things the old fast deployment system was relying on. You can see the release notes at [1]. It wold be helpful to have the diagnostic output for the error though if you can provide it. Its possible we might be able to work around any restrictions on the device. If you run the following command from a Developer Command Prompt
the post the msbuild.binlog ( you might have to zip it first). That will help us diagnose the problem your particular device is having. To work around this issue you can disable fast deployment in the IDE or by setting |
@ptabatt do you have a build log I could take a look at as mentioned in #5710 (comment). |
@ptabatt can you do that log again please, that one had not changes so it skipped all the targets. So uninstall the app from the device and run the command again, it should reproduce the error. |
Two things:
|
@ptabatt the |
@ptabatt the command
will produce a |
I see, thanks. Sorry for the delay. |
That was great thanks, but it didn't have the error you reported? Does that error only show up in the IDE or have you seen it on the command line as well? |
Only saw it on the IDE. I never build/deploy my app this way |
Can you use this VS extension to grab a log from inside the IDE? https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.ProjectSystemTools Hit this play button to start recording, then cause the issue: And you should be able to right-click to save a failing log, thanks! |
@mportune-bw you can try @dellis1972's example to get a log at the command-line: #5710 (comment) If it only happens in VS Mac (your screenshot looks like Mac), maybe just enable diagnostic logging and see if you can save the log to a file. |
You might also put |
Here's the |
Ok, that's it, this command is too long:
|
These are the bin logs from the tool @jonathanpeppers mentioned |
Context: https://dev.azure.com/devdiv/DevDiv/_workitems/edit/1290661/ Context: dotnet#5710 Changes: xamarin/monodroid@5918966...b2a750a * xamarin/monodroid@b2a750a2b: Bump to xamarin/androidtools@91ca8a80 (dotnet#1179) * xamarin/monodroid@73e652c36: [tools/msbuild] Add File.Exists checks for Fast Deployment (dotnet#1166)
Context: https://dev.azure.com/devdiv/DevDiv/_workitems/edit/1290661/ Context: #5710 Changes: xamarin/monodroid@5918966...b2a750a * xamarin/monodroid@b2a750a2b: Bump to xamarin/androidtools@91ca8a80 (#1179) * xamarin/monodroid@73e652c36: [tools/msbuild] Add File.Exists checks for Fast Deployment (#1166)
Hi, I am facing the same issue with latest stable Visual Studio for Mac and its dependencies: is there any feasible workaround in the meantime? I have Fast Assembly Deployment disabled, although the Deploying to Device panel shows the following:
Thank you in advance :-) |
@MarcosCobena apparently there is a Bug in VSForMac which does not update the
That should allow you to at least deploy until d16-3 SR 2 is released which contains a fix. |
@dellis1972 it worked! Thank you so much :-) |
Just updated to v11.2.2.1 stable and this appears to be fixed. Thank you! |
Hello Community, I even deleted my bin/obj folders but that didnt help either. |
@ataparia can you attach a log as mentioned above? The fix in VS 16.9.2 increased the limit to 4096, but we will be able to have a proper fix in a future 16.10 release. |
@jonathanpeppers The solution builds fine and thus the command msbuild /restore /t:Install /bl /p: _FastDeploymentDiagnosticLogging=true results in success. Its just when I try to deploy to a physical device that I get "Command too long..." error. Anyways I attached "AndroidBuildLog.txt" for that command as well. I enabled "Diagnostics"logging on VS and attached the build/deploy output. |
For the sake of completeness I should mention I'm using Jetbrains Rider for development/deployment, but use the VS Installer for updating Xamarin components. Hopefully this helps focus the troubleshooting since 11.2.2.1 fixed the issue for me. |
@ataparia I have an idea why the fix might be working for you command-line, but not when inside Visual Studio. Check if your VS is installed in Make a backup of this file somewhere (just in case):
Then open an administrator command-prompt and run:
Next, restart Visual Studio and see if that solves the problem or not. Thanks! |
@jonathanpeppers Thank you so very much. Yes copying that dll did fix the issue. Does future updates of VS 2019 will override the dll again or will this issue be fixed once and for all in the next versions? |
@ataparia they are looking to get this file updated in a future service release, thanks. |
Fixes: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1290584 Fixes: dotnet#5710 Changes: xamarin/monodroid@75cf1a2...3a05726 * xamarin/monodroid@3a05726b8: [Xamarin.Android.Build.Tasks] Fix the MAX_COMMAND adb Error. (dotnet#1182) * xamarin/monodroid@83de4b43c: [Xamarin.Android.Build.Tasks] Support FastDev for System Apps (dotnet#1177) * xamarin/monodroid@02f19e057: Bump to xamarin/android-sdk-installer@6bf8527 (dotnet#1176)
Fixes: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1290584 Fixes: #5710 Changes: xamarin/monodroid@75cf1a2...3a05726 * xamarin/monodroid@3a05726b8: [Xamarin.Android.Build.Tasks] Fix the MAX_COMMAND adb Error. (#1182) * xamarin/monodroid@83de4b43c: [Xamarin.Android.Build.Tasks] Support FastDev for System Apps (#1177) * xamarin/monodroid@02f19e057: Bump to xamarin/android-sdk-installer@6bf8527 (#1176)
Fixes: https://dev.azure.com/devdiv/DevDiv/_workitems/edit/1301607 Context: #5710 Context: https://dev.azure.com/devdiv/DevDiv/_workitems/edit/1290661 Changes: xamarin/monodroid@45abd3f...ff63362 * xamarin/monodroid@ff633623e: [tools/msbuild] Add additional diagnostic logging for FastDev. (#1194) * xamarin/monodroid@546d5fb58: [tools/msbuild] Add Better Diagnostic Logging for Fast Deployment. (#1185) * xamarin/monodroid@fa6a1a058: [tools/msbuild] incude PackageName in MAX_COMMAND adb check. (#1189) * xamarin/monodroid@ac447cb5d: Bump Xamarin.Android to bring in JDK Fixes (#1192) Issue #5710 was an error in Fast Deployment when an app had "lots" of localization assemblies, causing an `adb shell` command to become "too long". This was fixed in xamarin/monodroid@3a05726b and d9ed129. Add a new unit test which contains *all* available languages, as returned by `CultureInfo.GetCultures(CultureTypes.AllCultures)` (possibly 342 of them!). (This new test found that there were additional issues around Fast Deployment and "lots" of localization assemblies, addressed in xamarin/monodroid@fa6a1a058.)
Steps to Reproduce
Expected Behavior
Device either A) builds and runs successfully or B) fails and shows a meaningful error message indicating some sort of issue on the developer's part
Actual Behavior
Device builds android project and dependencies successfully and fails upon deployment with the following error message:
Version Information
Microsoft Visual Studio Enterprise 2019
Version 16.9.0
VisualStudio.16.Release/16.9.0+31025.194
Microsoft .NET Framework
Version 4.8.04084
Installed Version: Enterprise
Visual C++ 2019 00435-60000-00000-AA407
Microsoft Visual C++ 2019
.NET Core Debugging with WSL 2 1.0
.NET Core Debugging with WSL 2
ASP.NET and Web Tools 2019 16.9.687.37626
ASP.NET and Web Tools 2019
ASP.NET Core Razor Language Services 16.1.0.2107702+c4adaa061f13292143de82a96c71341e50bc4032
Provides languages services for ASP.NET Core Razor.
ASP.NET Web Frameworks and Tools 2019 16.9.687.37626
For additional information, visit https://www.asp.net/
Azure App Service Tools v3.0.0 16.9.687.37626
Azure App Service Tools v3.0.0
Azure Functions and Web Jobs Tools 16.9.687.37626
Azure Functions and Web Jobs Tools
C# Tools 3.9.0-6.21124.20+db94f4cc8c78a7cd8cf9cfdae091158d2ba9d974
C# components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.
Common Azure Tools 1.10
Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.
Extensibility Message Bus 1.2.6 (master@34d6af2)
Provides common messaging-based MEF services for loosely coupled Visual Studio extension components communication and integration.
IntelliCode Extension 1.0
IntelliCode Visual Studio Extension Detailed Info
Microsoft Azure Tools 2.9
Microsoft Azure Tools for Microsoft Visual Studio 2019 - v2.9.40218.1
Microsoft Continuous Delivery Tools for Visual Studio 0.4
Simplifying the configuration of Azure DevOps pipelines from within the Visual Studio IDE.
Microsoft JVM Debugger 1.0
Provides support for connecting the Visual Studio debugger to JDWP compatible Java Virtual Machines
Microsoft Library Manager 2.1.113+g422d40002e.RR
Install client-side libraries easily to any web project
Microsoft MI-Based Debugger 1.0
Provides support for connecting Visual Studio to MI compatible debuggers
Microsoft Visual C++ Wizards 1.0
Microsoft Visual C++ Wizards
Microsoft Visual Studio Tools for Containers 1.1
Develop, run, validate your ASP.NET Core applications in the target environment. F5 your application directly into a container with debugging, or CTRL + F5 to edit & refresh your app without having to rebuild the container.
Microsoft Visual Studio VC Package 1.0
Microsoft Visual Studio VC Package
Mono Debugging for Visual Studio 16.9.7 (df23ba6)
Support for debugging Mono processes with Visual Studio.
NuGet Package Manager 5.9.0
NuGet Package Manager in Visual Studio. For more information about NuGet, visit https://docs.nuget.org/
Office Developer Tools for Visual Studio 16.0.30502.00
Microsoft Office Developer Tools for Visual Studio
ProjectServicesPackage Extension 1.0
ProjectServicesPackage Visual Studio Extension Detailed Info
Snapshot Debugging Extension 1.0
Snapshot Debugging Visual Studio Extension Detailed Info
SQL Server Data Tools 16.0.62102.01130
Microsoft SQL Server Data Tools
Test Adapter for Boost.Test 1.0
Enables Visual Studio's testing tools with unit tests written for Boost.Test. The use terms and Third Party Notices are available in the extension installation directory.
Test Adapter for Google Test 1.0
Enables Visual Studio's testing tools with unit tests written for Google Test. The use terms and Third Party Notices are available in the extension installation directory.
TFS Auto Shelve 6.2
Create a shelveset for the latest version of all pending changes, automatically. Pending changes from the local TFS workspaces will be shelved to the TFS Server every "x" number of minutes when solutions are opened.
TypeScript Tools 16.0.30201.2001
TypeScript Tools for Microsoft Visual Studio
Visual Basic Tools 3.9.0-6.21124.20+db94f4cc8c78a7cd8cf9cfdae091158d2ba9d974
Visual Basic components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.
Visual F# Tools 16.9.0-beta.21102.9+7ce7132f1459095e635194d09d6f73265352029a
Microsoft Visual F# Tools
Visual Studio Code Debug Adapter Host Package 1.0
Interop layer for hosting Visual Studio Code debug adapters in Visual Studio
Visual Studio Container Tools Extensions 1.0
View, manage, and diagnose containers within Visual Studio.
Visual Studio Tools for CMake 1.0
Visual Studio Tools for CMake
Visual Studio Tools for Containers 1.0
Visual Studio Tools for Containers
VisualStudio.DeviceLog 1.0
Information about my package
VisualStudio.Foo 1.0
Information about my package
VisualStudio.Mac 1.0
Mac Extension for Visual Studio
Workflow Manager Tools 1.0 1.0
This package contains the necessary Visual Studio integration components for Workflow Manager.
Xamarin 16.9.000.271 (d16-9@863670b)
Visual Studio extension to enable development for Xamarin.iOS and Xamarin.Android.
Xamarin Designer 16.9.0.316 (remotes/origin/d16-9@fdbf64026)
Visual Studio extension to enable Xamarin Designer tools in Visual Studio.
Xamarin Templates 16.9.68 (8e9b569)
Templates for building iOS, Android, and Windows apps with Xamarin and Xamarin.Forms.
Xamarin.Android SDK 11.2.0.21 (d16-9/93eab59)
Xamarin.Android Reference Assemblies and MSBuild support.
Mono: 5e9cb6d
Java.Interop: xamarin/java.interop/d16-9@d6d86b2
ProGuard: Guardsquare/proguard@912d149
SQLite: xamarin/sqlite@daff8f4
Xamarin.Android Tools: xamarin/xamarin-android-tools/d16-9@9d8924d
Xamarin.iOS and Xamarin.Mac SDK 14.14.2.5 (3836759d4)
Xamarin.iOS and Xamarin.Mac Reference Assemblies and MSBuild support.
Log File
androidlogfile.txt
The text was updated successfully, but these errors were encountered: