mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2026-02-06 16:05:07 +00:00
Filter installation on incompatible device APIs #152
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @adelphes on 1/27/2017
Currently, the debugger allows an App to be deployed onto any device, regardless of the API level. If an app is deployed to a device with an API lower than the minimum required by the app, the installation fails.
Now that the launch routine knows the device API before deployment, we should check it against the App's API level and give an appropriate message.
We could also filter connected devices, ignoring those whose API is not compatible (rather than requiring the user to always choose a target device.)