What directory are playerprefs stored for Phone dev?

What directory are playerprefs stored for Phone dev?

I looked in ~/Library/Preferences and can find my regular unit dev player prefs but not the iPhone dev plist. I also searched for my app name on the whole disk but code not find the file.

Cheers,
Grant

On iPhone device PlayerPrefs are stored using NSUserDefaults. I don’t think you can access them externally as file.

Not sure if I was unclear in my first message. When running a game in IDE can the playerprefs be accessed to check what is in it. I know they are presisted from one play to the next.

No you can not access them unless you send them out

I am seeing a .plist file for my PlayerPrefs on the Mac. I can open it, or use defaults read from the shell. It just doesn’t have the standard domain naming convention, if that’s what you were looking for:

alex-rices-imac:~ alexr$ defaults read “unity.Mindlube Games.ChickenFoot”
{
hello = world;
}

alex-rices-imac:~ alexr$ ls ~/Library/Preferences/unity
/Users/alexr/Library/Preferences/com.unity3d.UnityEditor.plist
/Users/alexr/Library/Preferences/com.unity3d.UnityEditoriPhone.plist
/Users/alexr/Library/Preferences/com.unity3d.UnityWebPlayer.plist
/Users/alexr/Library/Preferences/unity.Mindlube Games.ChickenFoot.plist