Hello,
There is a lot of people asking why do they get this message, even when it is a compatible device, and was selected as a build target. What can it be? firmware version?
Thanks in advance for your tips and knowledge!!
Hello,
There is a lot of people asking why do they get this message, even when it is a compatible device, and was selected as a build target. What can it be? firmware version?
Thanks in advance for your tips and knowledge!!
Have you set a minimum FW version in the manifest? If so, what is it?
Are you running into a case where users with APAC devices see this but now ROW/World Wide users? (APAC devices often lag ROW devices…
The APAC version typically lags behind the WW version when it comes to firmware updates. This means that your code needs to check (using a has check) for features that you are trying to use that may not…
All of my projects have a min SDK of 1.2.x. Setting a min SDK only does part of what you need, and leads to issues like this. You can eliminate CIQ 1 and CIQ 2 devices by just not including them as targets…
And something similar has happened a number of times, and something to think about in apps, Any time something new comes to WW FW, you want to consider the APAC lag and handling it.
Also, there's things like the va3mlte, which at least per the sim, doesn't have 3.2 yet (while the regular va3m does) and you can display a message, like this:
Yes, I see. My targets right now are just 3.2+, but I will consider doing that kind of checks to see if I can add compatibility to older devices... thanx a lot!!