[android-developers] Re: Exclude files from classpath when building with Ant

2013-05-22 Thread Deepwinter
cool thanks. makes sense. -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroup

[android-developers] Exclude files from classpath when building with Ant

2013-05-21 Thread Deepwinter
In Eclipse I have some sources that I exclude from the classpath. When I compile with Ant, however, using 'ant release' I get build errors because these files are not being excluded. How can I exclude files from the classpath when building with ant ? The following line is included in .classpa

[android-developers] No Intent to selection Contact Groups ?

2013-05-17 Thread Deepwinter
Is it necessary to code a custom activity to select a group of contacts? Is there no build in activity that can handled ACTION_PICK for Groups.CONTENT_URI? Does anyone have an open source recommendation for this? Certainly wouldn't be hard to implement, just seems like something that's pro

[android-developers] Re: java.lang.UnsupportedOperationException: getBlob is not supported

2012-05-25 Thread Deepwinter
Here's a pastbin that describes the problem http://pastebin.com/hbxCdmLy On May 24, 7:34 pm, Deepwinter wrote: > I want to return a BLOB as a row in a MatrixCursor, however I get the > following error > > 05-24 19:20:42.850: E/And

[android-developers] java.lang.UnsupportedOperationException: getBlob is not supported

2012-05-24 Thread Deepwinter
I want to return a BLOB as a row in a MatrixCursor, however I get the following error 05-24 19:20:42.850: E/AndroidRuntime(22661): java.lang.UnsupportedOperationException: getBlob is not supported on top of this stack trace 05-24 19:20:42.850: E/AndroidRuntime(22661):at android.database.A

[android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Deepwinter
that this isn't the best idea, and I should implement Parceable. On Apr 13, 2:58 pm, Kostya Vasilyev wrote: > What is "rather large" in "rather large JSON value" ? > > 14.04.2012 1:50, Deepwinter написал: > > > Ok This makes sense. > > > I'

[android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Deepwinter
ize of the JSON string the problem? Packing up the JSON is just fine, but the next activity never even gets the chance to unpack it as onCreate is never called. On Apr 13, 2:39 pm, Kostya Vasilyev wrote: > 14.04.2012 1:32, Deepwinter ???: > > > However when I launch the activit

[android-developers] Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Deepwinter
I'm launching a new activity with startActivity(intent), an activity which I have verified to launch successfully when I call startActivity from onCreate of another activity. However when I launch the activity later in the program (where it should be launched), I just get a black screen. I get no

[android-developers] Cursor Subclass onChange() notifications

2012-03-08 Thread Deepwinter
I have written a custom subclass of MatrixCursor which handles some behind the scenes data updates (from the network) asynchronously. When new data has been added to the data store (not sqlite), the MatrixCursor subclass calls onChange(true). I have a dataSetObserver registered as docum