Can a Windows Store App find out if developer mode is activated on the device? -
is there api in windows 10 find out if developer mode activated? guess answer no. maybe there special trick?
reading registry key not work, because store apps not allowed access registry.
the use case is: show additional menu entry useful debugging.
is there api in windows 10 find out if developer mode activated?
there's no api available yet uwp app find if developer mode activated.
however, can try using
windows.applicationmodel.package.current.isdevelopmentmode
it indicates whether package installed in development mode.
for more details, see https://msdn.microsoft.com/library/windows/apps/dn175745.
Comments
Post a Comment