Filter device that fulfills the SDK'S minimum requirements from Google Play
R
Rasanga Perera
started a topic
over 10 years ago
Filter device that fulfills the SDK'S minimum requirements from Google Play
1 Comment
R
Rasanga Perera
said
over 10 years ago
In Android, we use the following code to check weather the device fulfills the SDK'S minimum requirements
//check if the device fulfills the SDK'S minimum requirements if(!ArchitectView.isDeviceSupported(this)) { Toast.makeText(this, "Minimum requirements not fulfilled", Toast.LENGTH_LONG).show(); this.finish(); return; }
But there users get to know their devices are not supported after they have installed a app rather than doing this can't we filter devices from Google Play Store. My question is why wouldn't we use AndroidManifest.xml file to filter out unsupported devices.
Rasanga Perera