Reputation: 19268
I would like to create a quick tutorial for the app when it first time been opened.
Is there a way you can actually do this? Would you create a text file under the appIDfolder and update the value when first time it been open. so it will differentiated if it was first time used? or any better ideas or suggestion.
Thanks for any help
Upvotes: 0
Views: 141
Reputation: 11958
It can as I do
Upvotes: 1
Reputation: 2332
That's what I did - File.applicationStorageDirectory
is your friend. Just write a small file there. You could store the version number, last access, etc. there so you'd have some options ("Welcome back, it's been a long time", "Here are the features in the new version", etc.).
Upvotes: 1