Reputation: 41
there was a problem with the application debugging. I used to debug it and everything was fine. Then I deleted the application from the phone, but now I need to use it again. But when deploying, I get an error:
Error XA0130: Sorry. Fast deployment is only supported on devices running Android 5.0 (API level 21) or higher. 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'. 0
,
all the options on the Internet do not work, can someone help, thanks. I am using Android version 9.0-API 28
The program has been uninstalled from the phone and now I need to use it again.
Upvotes: 1
Views: 119
Reputation: 21223
Verify that "Use Fast Deployment (debug mode only) is NOT checked.
Then Rebuild Solution
. Should be able to debug again.
Fix is to completely uninstall app manually using "adb" command line:
Visual Studio, Tools menu > Android > Run ADB Command Prompt
adb uninstall com.example.yourApp
. Substitute your app's bundle name for "com.example.yourApp" - it should have a format like that, probably with your company's website as the first two parts.
Upvotes: 1