I read the update here:
A long requested feature, XD plugins are now tied to your Adobe account, which makes installing them on new devices a breeze!
In my plugin, users are able to save their plugin settings and add their own options that work across projects. I’m storing that in the user data folder.
try {
var dataFolder = await fileSystem.getDataFolder();
var newFile = await dataFolder.createEntry(filename, { overwrite: true });
var data = JSON.stringify(options, null, XDConstants.TAB);
newFile.write(data);
}
catch (error) {
log(error.stack);
}
Seeing how XD plugins can or will be connected to an Adobe account is it possible to store that user data in their Creative Cloud account if they so choose?