When I attempt to run my droid x2 in debug, the external storage appears to be inaccessible. The statement that displays the error:
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
Log("************ Vampire Of Needham ************")
If File.ExternalWritable = False Then
Msgbox("Cannot write on storage card.", "")
Return
End If
The application installs and runs correctly when I'm not trying to debug.
When I use the T-Mobile G1 developers Android, I can run the same program in debug as intended.
One other quirk. I can download and install an .apk from Android market but I can't download and install the same .apk file from a web site using allow "Unknown sources".
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
Log("************ Vampire Of Needham ************")
If File.ExternalWritable = False Then
Msgbox("Cannot write on storage card.", "")
Return
End If
The application installs and runs correctly when I'm not trying to debug.
When I use the T-Mobile G1 developers Android, I can run the same program in debug as intended.
One other quirk. I can download and install an .apk from Android market but I can't download and install the same .apk file from a web site using allow "Unknown sources".