I have developed an application but now I would like to check at the first startup of the app if it is an Android Go phone and if so, inform the user that it is not supported.
In Android it is possible to check the SDK version but is it also possible to check if it is a Go phone?
I would like to exclude Android Go phones because they do not support SYSTEM_ALERT_WINDOW
which my app needs.
Looking on the official documentation https://developer.android.com/google/play/publishing/multiple-apks, it says that for an app to run on android Go, you need to
so by simply not putting the previous code in your manifest, your app will not be available for android Go.