[android-developers] Re: Help!? Updating our applicatoin on the market deletes the saved SharedPreferences.

2009-03-10 Thread Tyler Ernst
Here's the link to the defect http://code.google.com/p/android/issues/detail?id=2047 On Mar 10, 4:09 pm, Tyler Ernst ernst.ty...@gmail.com wrote: DO NOT EVER CHANGED COPY PROTECTION FROM ON to OFF OR OFF to ON. We found the problem, it is not related to the defect listed above. It turns

[android-developers] Help!? Updating our applicatoin on the market deletes the saved SharedPreferences.

2009-03-09 Thread Tyler Ernst
We have an online multiplayer game that saves some login information in the SharedPreferences. Our app is copy protected and everything was going really well until this weekend when we released an update for it. It seems that at least some of the people are having their SharedPreferences

[android-developers] Re: Help!? Updating our applicatoin on the market deletes the saved SharedPreferences.

2009-03-09 Thread Tyler Ernst
On Mar 9, 12:36 pm, Tyler Ernst ernst.ty...@gmail.com wrote: We have an online multiplayer game that saves some login information in the SharedPreferences.   Our app is copy protected and everything was going really well until this weekend when we released an update for it.  It seems

[android-developers] Loading fonts from memory?

2009-02-25 Thread Tyler Ernst
Is there a way to load a font to a Typeface that is in memory? Not a default system font or in your assets folder. Our problem is that we have a font file that is loaded into memory stored into a byte array, and we need a way to convert this to a Typeface so we can use it to draw. We have been

[android-developers] Re: Uninstalling application breaks gmail preview on G1

2009-01-08 Thread Tyler Ernst
is monitor the log output (using adb logcat), capture the stack trace of the actual crash, and share that.  Otherwise there's just no telling what is going wrong. --Andy On Wed, Jan 7, 2009 at 2:51 PM, Tyler Ernst ernst.ty...@gmail.com wrote: We are working on an application to view documents

[android-developers] Uninstalling application breaks gmail preview on G1

2009-01-07 Thread Tyler Ernst
We are working on an application to view documents for Android. So our main Activity registers an intent filter to be the default viewer for that document type. Below is an example of how we register a filter. action android:name=android.intent.action.VIEW/action category

[android-developers] Re: M5 - 0.9 Issue about file creation

2008-09-11 Thread Tyler Ernst
Thanks! I had the same problem. On Aug 20, 8:45 am, roland [EMAIL PROTECTED] wrote: Just found the problem is i didn't delete old package folder which is compiled with the M5. Everything works fine now. On 20 août, 17:00, roland [EMAIL PROTECTED] wrote: In my application, i saved

[android-developers] Re: Android JNI

2008-08-25 Thread Tyler Ernst
Thanks, that was exactly what we needed. We realize JNI is not supported, but Java code is just too slow to do the things we need... On Aug 25, 2:23 am, Volker Gropp [EMAIL PROTECTED] wrote: On Aug 22, 9:30 pm, Tyler Ernst [EMAIL PROTECTED] wrote: Also since the 0.9 beta has been released I

[android-developers] Re: Android JNI

2008-08-22 Thread Tyler Ernst
You are getting those errors because you are building for linux, but using the windows jni includes. This is because the compiler does not recognize the __int64 microsoft extension. You can build this in a windows environment, but you'll have to get the include files from the linux environment.