Alejandro Castán
Alejandro Castán

Reputation: 299

How to disable Fast Deployment in Visual Studio 2013

I am making a android app and when I try to deploy it, I got the following error

Deployment failed due to an error in FastDev assembly synchronization.

I have read in the Web, that I could resolve it if I disable Fast Deployment option, for it, Could anybody say me how I could do it in VS2013 or other place? Thanks in advance Alejandro

Upvotes: 2

Views: 13844

Answers (4)

AbsolutelyFreeWeb
AbsolutelyFreeWeb

Reputation: 407

If you are editing the project xml by hand,

When you turn on fast deployment, 'EmbedAssembliesIntoApk' is false

When you turn off fast deployment, 'EmbedAssembliesIntoApk' is true

Upvotes: 0

juFo
juFo

Reputation: 18567

In Visual Studio 2017 (15.3.1 to 15.9.35) & Visual Studio 2019 (16.9.4):

  1. Right-mouse click the Project in Visual Studio
  2. Select Properties
  3. Go to "Android Options"
  4. Uncheck: "Use Fast Deployment (debug mode only)"

Upvotes: 4

user3743736
user3743736

Reputation: 81

In VS2013, Right Click The Android Project -> Properties -> Build Options -> Uncheck: Use Fast Deployment

Upvotes: 8

try it: Project / Project Options / Android Build / Fast deployment

Upvotes: 3

Related Questions