Does anyone know if it's possible to target a spec...
# android
b
Does anyone know if it's possible to target a specific android device? For example, if I wanted all Samsung devices to do one thing. And all other devices to do another? I believe the answer is no, but just wanted to make sure.
g
You can probably extract some info from the
Build
file. Such as
Build.BRAND
and do your own conditions based on that
☝️ 4
b
Ah cool, thanks!