[android-developers] combining 1.5 and 1.6

2010-04-09 Thread BrianS
Hi I'm wondering if it's possible to have an app that has a portion of its code implemented using Android 1.5 (API Level 3) and part using 1.6. (For example maybe implementing one of the app's activities in 1.6 while the overall app is in 1.5)? thanks much Brian -- You received this message

[android-developers] Multiple versions of app with different package names

2010-01-08 Thread BrianS
Hi-- I need to be able to easily create different flavors on an app, each with a unique package name so that they can coexist on the same device. Is there a simple way this can be done, which doesn't require manually updating all the imports and other references to the package name each time I

[android-developers] Rotating in content gets clipped

2009-10-24 Thread BrianS
Hi-- I'm trying to draw some large circles on the canvas which are partly offscreen, then use animation to rotate them in be fully visible. My circles successfully rotate in, but when they come into view they're clipped at the place that was the screen edge when they were originally drawn. Is

[android-developers] Re: Forward Locking A Specific Downloaded File

2009-09-08 Thread BrianS
to read it. On Sun, Sep 6, 2009 at 8:48 AM, BrianS bnsaw...@aol.com wrote: Is there a way to forward lock a specific film that my code downloads to the android (like a wallpaper or ringtone)? I know you can forward lock a package, but its resources still remain public, wondering if its

[android-developers] Re: Forward Locking A Specific Downloaded File

2009-09-08 Thread BrianS
don't use the flag to make the files world readable, they won't be. On Tue, Sep 8, 2009 at 9:47 AM, BrianS bnsaw...@aol.com wrote: So would the the private directory you refer to be called data/data/ com.myapp/private/ ? thanks much B On Sep 7, 6:30 pm, Dianne Hackborn hack

[android-developers] Forward Locking A Specific Downloaded File

2009-09-07 Thread BrianS
Is there a way to forward lock a specific film that my code downloads to the android (like a wallpaper or ringtone)? I know you can forward lock a package, but its resources still remain public, wondering if its possible to just forward-lock a file. Thanks much (Apologies if this is a duplicate

[android-developers] Forward Locking A Specific Downloaded File

2009-09-07 Thread BrianS
I am interested in forward locking a downloaded file (an image, or a ringtone, etc). Is there any way to do this? As far as I can tell packages can be forward locked, but their resources remain public, is there a way to forward lock a specific file I've downloaded to the Android?