Checking if it is the first time ever opening the app?

NJDude

Expert
Licensed User
Longtime User
You could ask for the existence of a file on the device, if it doesn't exist then create it, the next time it's opened, the file exists, so, it was ran before.

That's just one way of doing it.
 
Upvote 0

margret

Well-Known Member
Licensed User
Longtime User
I write a file to the DirInternal folder the first time they run the app. This files existance confirms they have used or opened the app and read the EULA agreement.

So if you do something like this, your code checks for this file when it runs and if not found you know it's the first time they have ever opened the app.
 
Upvote 0
Top