Thanks,
Got another error using File.ExternalWritable. This is what I am trying to do (I have a font.txt file created in the app Files folder). Basically, I am trying to save the user's font choice and load that choice at start up. font.txt is created with a default value
Sub Activity_Create(FirstTime As Boolean)
Reader.Initialize(File.OpenInput(File.DirAssets, "font.txt"))
font = Reader.ReadLine
End Sub
Sub Button_Click
File.WriteString (File.DirAssets, "font.txt", Spinner1.SelectedItem)
End sub