How to block Android 11 downlods on playstore?

Try to declare this in the Manifest:

<uses-sdk android:maxSdkVersion="29" />

Here:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" ... >
    <uses-sdk android:minSdkVersion="19" android:maxSdkVersion="29" android:targetSdkVersion="30" />
    ...
</manifest>

See also here: