Re: [android-developers] Re: GC calls from other processes causing slowdown (?)

2013-03-31 Thread Jason Polites
I'm 90% sure it wasn't, but I make this claim based on profiling heap allocations and I don't think I confirmed that the process ID was actually different. I'll confirm (or otherwise) this and post back. On Mar 31, 2013 2:52 AM, RichardC richard.crit...@googlemail.com wrote: Is/was 2590 your

Re: [android-developers] Re: GC calls from other processes causing slowdown (?)

2013-03-31 Thread Jason Polites
to work concurrently. On Sun, Mar 31, 2013 at 4:38 PM, Jason Polites jason.poli...@gmail.comwrote: I'm 90% sure it wasn't, but I make this claim based on profiling heap allocations and I don't think I confirmed that the process ID was actually different. I'll confirm (or otherwise

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-18 Thread Jason Polites
So, the NDK stuff is pretty simply if your project is created in an NDK Friendly way. That is, you have a folder called jni and in that folder you have an Android.mk and an Application.mk file. Basically the process documented here (

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-17 Thread Jason Polites
Actually what I really want is code complete (and all the bells and whistles that go along with a proper editor). Syntax highlighting actually works without any plugins but if you want any sort of code complete (et. al.) then it's going to require some sort of C++ interpreter. Running the NDK

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-13 Thread Jason Polites
So I've been working in Intellij all day today, although most of the time was spent in the setup/config process. I initially tried to get the C++ plugin http://plugins.jetbrains.com/plugin/?id=1373 to work for my NDK related stuff but just couldn't get the paths setup correctly (I assume) because

Re: [android-developers] Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Jason Polites
Well that pretty much seals the deal for me. Intellij it is. I presume this means using ANT as the build system? I've had all sorts of trials and tribulations with the ANT build system for Android, although in fairness most of this has been caused by trying to push it beyond it's comfort zone

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Jason Polites
My issue has never been with the features of eclipse.. they're awesome. My issue is that they just don't work. Running CDT along side regular Java along side Android ADT is just broken. I am constantly getting combinations of: weird behavior (dialogs not containing default values,

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Jason Polites
Not sure how that helps the discussion, but thanks. On Tue, Mar 12, 2013 at 4:24 PM, Lew lewbl...@gmail.com wrote: Jason wrote: My issue has never been with the features of eclipse [sic] .. [sic] they're awesome. My issue is that they just don't work. Running CDT along side [sic] regular

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Jason Polites
Sure, but the intention of the thread was to inform as to whether intellij is a realistic option for Android development. People are relaying their personal experience with each, which is all valid, relevant information for those interested in the answer, which I am since I posted the original

[android-developers] Code coverage report: no metadata found in any of the data files

2011-04-13 Thread Jason Polites
Hi folks, I'm trying to generate code coverage reports from the junit tests on my project, but I keep running into this message: nothing to do: no metadata found in any of the data files I am running tests using the build script with: ant -buildfile ...build.xml coverage It seems to be

[android-developers] IllegalStateException in MediaPlayer (Redux)

2010-11-23 Thread Jason Polites
Hi folks, Some time ago I posted an issue relating to an IllegalStateException in the Media Player (http://groups.google.com/group/android-developers/ browse_thread/thread/46c7c2cd4f4a6958/5551d47aac93632c) I have just launched the app into the wild and this error is flooding in. I just can't

[android-developers] Occasional opengl texture corruption.. sometimes works, sometimes doesn't

2010-08-01 Thread Jason Polites
Hi all, I'm having a pickle of a problem with some fairly simple opengl texture mapping. I have a situation where I want to tile a texture across a surface larger than the texture bitmap.. pretty standard stuff. I have a simple triangle grid that I use to setup the vertices etc (code pasted