Problem building CupCake

2009-04-02 Thread Al Sutton
I'm on Ubunyu 8.04-LTS, I've followed the instructions from the webpage, but every time I try to run make I hit; Copying out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/ classes-full-debug.jar Copying: out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/ classes.jar target

RE: Problem building CupCake

2009-04-02 Thread Al Sutton
, Apr 2, 2009 at 2:32 AM, Al Sutton a...@funkyandroid.com wrote: I'm on Ubunyu 8.04-LTS, I've followed the instructions from the webpage, but every time I try to run make I hit; Copying out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/ classes-full-debug.jar Copying: out/target

RE: Problem building CupCake

2009-04-02 Thread Al Sutton
are those of the author and not necessarily those of Funky Android Limited, it's associates, or it's subsidiaries. -Original Message- From: android-framework@googlegroups.com [mailto:android-framew...@googlegroups.com] On Behalf Of Al Sutton Sent: 02 April 2009 10:52 To: android-framework

RE: Problem building CupCake

2009-04-02 Thread Al Sutton
[mailto:android-framew...@googlegroups.com] On Behalf Of ?? Sent: 02 April 2009 16:42 To: android-framework Subject: Re: Problem building CupCake change to jdk 1.5 On Apr 2, 10:44 pm, Al Sutton a...@funkyandroid.com wrote: I've been working away on this and found the problem; The build

Build errors in git

2009-02-08 Thread Al Sutton
I'm getting some build errors in the location subtree of the frameworks section of git trunk that seem to be based around missing classes and packages. Is this being worked on? I'm asking because I'd like to have a poke at MatrixCursor which has some scalability issues when adding large

Re: Memory leak or did I miss something.

2009-01-25 Thread Al Sutton
, 2009 at 2:48 AM, Al Sutton a...@funkyandroid.com wrote: Looking through android.content.SearchRecentSuggestionsProvider.java there are several methods (insert, delete, query,...) which get a SQLiteDatabase object from the helper but don't close them. Wouldn't this cause a memory leak? Al

Re: Memory leak or did I miss something.

2009-01-25 Thread Al Sutton
, so they don't really have a lifecycle on their own. On Sun, Jan 25, 2009 at 1:03 PM, Al Sutton a...@funkyandroid.com mailto:a...@funkyandroid.com wrote: But my question is who does close the database reference? The SQLiteOpenHelper javadoc says Make sure to call close() http

Re: ContentProvider idea

2009-01-23 Thread Al Sutton
for different paths in the provider, and the Download provider to remember which apps have initiated particular downloads and control future access to them. On Fri, Jan 23, 2009 at 7:52 AM, Al Sutton a...@funkyandroid.com mailto:a...@funkyandroid.com wrote: Has anyone thought about a way

Re: Exposing build-time-configurable aspects

2009-01-21 Thread Al Sutton
Looks good to me, it's an improvement over the existing code because dereferencing a static final variable will give any compiler or JIT a very strong hint that it's safe to substitute the value directly into the places where it's used at compile time as opposed to generating code which goes

Re: Exposing build-time-configurable aspects

2009-01-21 Thread Al Sutton
that we don't want to do. That's why Joe's initial suggestion (and his current recommendation) is to use an API based on functions, not members, such that the list of values can be expanded dynamically without having to change the API. JBQ On Wed, Jan 21, 2009 at 12:48 AM, Al Sutton

Re: Exposing build-time-configurable aspects

2009-01-21 Thread Al Sutton
21, 2009 at 5:40 AM, Al Sutton a...@funkyandroid.com wrote: So we'd end up with a mix of buid-time-configuration properties (which is the title of this thread) and branding options in one place. I can see a distinct difference between the two which is why I would suggest they are handled