I wrote most of an app just fine with min API level set to 7. I want to call a single API from level 8. Users with lower versions of android will survive without this "extra feature".
Currently I added @SuppressLint("NewApi")
so that my code can run; and I'm testing it on API 14. Everything works fine.
I wonder what the app will behave on API 7 devices. Would this one line be ignored? Would my app crash? Would the app be filtered by Google Play so they can't install?
I'd like to have this single line ignore on lower devices.