I have released an app on the app store with the target api being 23. A user has contacted me informing me that my app immediately crashes on devices running 23. After researchi
instead of downgrade you can add conditions for relate the parts of your code to the supported versions.
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M){ //put whole code here if nothing supported for 23+ }