I have just set up Android Studio and am trying to compile my first project. The project gets compiled but when the 'Choose Device' menu opens the device and state is shown as [OFFLINE] and compatible gives message Android error message Android error 'No, minSdk(API 19) > deviceSdk(API 25)' What does this mean? How can I solve it?
Asked
Active
Viewed 655 times
-3
-
2If the minSDK is 25 and the emulator is 19, **you can't run it on that emulator** – Zoe Jan 04 '18 at 14:43
-
Your question title does not match the question – OneCricketeer Jan 05 '18 at 01:14
1 Answers
0
It means what it says. Your device has an SDK less than the one code you be compiled. It won't run there.
Make a new AVD for the SDK you want to use

OneCricketeer
- 179,855
- 19
- 132
- 245
-
My code runs over AVD virtual device but the problem when my physical cell phone it was connected, thanks – Paulo Pérez Jan 06 '18 at 11:36
-