Hi all,
I’m using the openudid plugin on iOS
https://docs.coronalabs.com/plugin/openudid/
in my build.settings I have:
settings = { plugins = { ["plugin.openudid"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true } }, } ...
then in my main.lua i have:
local openudid = require( "plugin.openudid" ) openudid.setOptOut( true ) print( openudid.getValue() )
when I run the app on my iOS device (iphone4s with iOS 9.3.5 ) the openudid.getValue() still return a long zero string like this: “0000000000000000000000000000000000000000”.
I have see in Corona Marketplace that the plugin is pre-activated
Unfortunally call the system.getInfo( “deviceID” ) not help because it return different ID each time the app is deleted/reinstalled.
I dont’know if I’m missing something or the plugin has a bad behaviour.
I’m using Corona SDK Build: 2016.2950
Any suggestions are appreciated.
Thanks in advance.
Ale