The selected device is incompatible during Android debugging
The selected device is incompatible during Android debugging
Encountered this problem when debugging Android. Details are shown in the figure below:
Summarize the reasons for this problem:
1. The version of the mobile phone is too low to be downward compatible. 2. Due to the state, it becomes offline (which is also the problem I encountered). The main reason is the problem of USB debugging or driver, which is generally the problem of USB debugging.
Solution:
For reason 1: in the manifest file, Android: versioncode = "XX", change the XX value to the value of the device API, or change the minsdkversion value, and then rebuild to solve the problem.
For reason 2: plug and unplug the mobile phone again to become online, and then you can debug accordingly.
If the above reasons still occur when you become online, it is that your version is too low. Either change to a higher version system, or modify the value of minsdkversion to match your mobile phone system.
Thank you for reading, hope to help you, thank you for your support to this site!