4

I have configured Visual Studio 2017 to build an app, but during compile I see this warning:

xamarine warning : max res 25, skipping mipmap-anydpi-v26

and if I try to create a new Android device, to test the application, I see this result:

Device could not be created Please file an issue by choosing Report a Problem in the Help menu...

How can I solve this issue?

thanks

Suh Fangmbeng
  • 573
  • 4
  • 16
Jonio
  • 1,213
  • 2
  • 15
  • 35

2 Answers2

1

please remove Resources/mipmap-anydpi-v26 folder Then error would be removed.

Andrei
  • 279
  • 2
  • 6
1

You need change your targetSdkVersion to 26(or 27 ), because this mipmap-anydpi-v26 folder will be used on the devices which version is >=26.

Also you can read what is mipmap-anydpi-v26

If your targetSdkVersion is <26, like @Andrei has said, you need delete mipmap-anydpi-v26 folder.

Robbit
  • 4,300
  • 1
  • 13
  • 29