I’m updating my app in Play Market. And get warning from google SPLIT_BUNDLE 1: Policy Declaration - Data Safety Section: Device Or Other IDs Data Type - Device Or Other IDs (some common examples may include Advertising ID, Android ID, IMEI, BSSID)
I haven’t heard of this before and I’m not entirely sure of its meaning.
“We detected user data transmitted off device that you have not disclosed in your app’s Data safety section as data user collected.”
The three extensions you have do not transmit any data and Defold itself surely does not. It is true that we get the device id to populate one of the sys.get_sys_info() fields, but the data is not transmitted anywhere…
You should be able to complete/update the Data safety form for your app to get rid of the warning though:
It would be great if they mentioned which data, and also how they detected that.
In theory you could collect a lot of data and encrypt it and send it over http, and how would they know?
Is it perhaps the fact that the android id was collected at all?
It probably is. I don’t think Google will know what happens with the value after it is retrieved. I think they only check if we have code to get it or not.
I’m concerned that this is a breaking change. If we decide to move it to an extension then maybe we should still keep the device_id field around in sys.get_sys_info() and replace it with an UUID generated from a MAC address (and maybe emit a warning or something).