Registration keys - where to store them?

Hi, in my software I use unique reg keys for people to input in the plug-in when they purchase them. Is there a special Juce place to put these keys or do people generally put them in the normal user data areas?
Thanks,
Dave H.

(You might want to look at the juce_product_unlocking module if you’re doing that kind of thing)

No, we don’t try to impose any requirements on where you store things, I think most people would just put this in the standard app data location. PropertiesFile is helpful in doing this on all platforms.

1 Like

That sounds useful, thanks Jules.