How not to loose that many users and let them still use new, fixed and updated versions of my app?
You're mistaken in what SDK version you changed. There's minSDKVersion and targetSDKVersion. The play store requires you to have the targetSDKVersion to be at least 14, but the minimum can be as low as you want. So change the minSDKVerion back and adjust the targetSDKVersion instead.
The difference between the two- the minSDKVersion is the lowest version of Android your app will run on. The targetSDKVersion is the version you're targetting. Changing that changes how some APIs behave, they will keep legacy behavior if your targetSDKVersion is older.