[android-developers] Re: NFC doubts. JSR 257 - 177

2011-01-22 Thread Ben Dodson
I had trouble cut/pasting from the git source to google group as well. The package is here: android.git.kernel.org/?p=platform/packages/apps/Tag.git;a=summary On Jan 22, 4:30 pm, davemac wrote: > H. Dianne's link doesn't appear to work. Any help here? > > - dave > > On Jan 18, 9:12 pm, Dian

[android-developers] Re: Create Parser for the given JSON

2011-01-22 Thread Ben Dodson
http://developer.android.com/reference/org/json/JSONObject.html#JSONObject(java.lang.String) On Jan 22, 5:44 am, DanH wrote: > A JSON parser is about 500 lines of code -- a few hours work.  (The > encoder is another 250 or so.)  The hard part is parsing numbers per > the JSON spec. > > Or you can

[android-developers] NFC P2P Mode

2011-01-21 Thread Ben Dodson
I was looking through the git repository history and found some code relating to P2P mode in Android. I understand it's not ready for use by users and typical Android developers, but I was hoping to play around with it myself. I was wondering if anyone else was playing with this or had some experie

[android-developers] Raw audio from the microphone?

2009-01-15 Thread Ben Dodson
Hi, I'm trying to build a training tool to help strengthen certain vocal issues. I'm hoping to do some basic pitch/tone analysis. I've been looking around, and it doesn't seem easy to get access to raw audio data (wav file)? Is this the case? Thanks, Ben --~--~-~--~~~

[android-developers] Re: Streaming Media

2008-11-13 Thread Ben Dodson
l-featured media app. On Oct 25, 9:53 am, Ben Dodson <[EMAIL PROTECTED]> wrote: > I'm trying to get my web streaming software running on Android. Things > seem to work fine for streaming mp3 files, but I can't getplaylists > working. So far, I've only tried m3u

[android-developers] Streaming Media

2008-10-25 Thread Ben Dodson
I'm trying to get my web streaming software running on Android. Things seem to work fine for streaming mp3 files, but I can't get playlists working. So far, I've only tried m3u files. Anyone had any luck with playlists? --~--~-~--~~~---~--~~ You received this messag

[android-developers] Re: Load a class from another .apk file dynamic?

2008-04-10 Thread Ben Dodson
Hi, I and a few others have gotten this working successfully. Check this thread for details: http://groups.google.com/group/android-developers/browse_thread/thread/fe0978b471d4bef4/72507bfb7586aded?hl=en&lnk=gst&q=installer#72507bfb7586aded Ben On Apr 10, 5:28 am, "David Welton" <[EMAIL PROTEC

[android-developers] Re: PackageManager.installPackage() ?

2008-03-26 Thread Ben Dodson
Extremely unlikely is better than no chance at all :) I posted a request here if anyone's interested: http://code.google.com/p/android/issues/detail?id=545 thanks for the help Diane. Ben On Mar 25, 12:31 pm, hackbod <[EMAIL PROTECTED]> wrote: > On Mar 25, 5:58 am, Ben Dodson <

[android-developers] Re: PackageManager.installPackage() ?

2008-03-25 Thread Ben Dodson
wrote: > On Mar 24, 4:47 pm, Ben Dodson <[EMAIL PROTECTED]> wrote: > > > And only an activity must be defined in a top-level application? > > Hm, not sure I understand. Applications have everything defined by > AndroidManifest.

[android-developers] Re: PackageManager.installPackage() ?

2008-03-24 Thread Ben Dodson
ackageInfo = thread.getPackageInfo > > > (ai, > > > > Context.CONTEXT_IGNORE_SECURITY|Context.CONTEXT_INCLUDE_CODE > > > > ); > > > >      thread.getApplicationThread().scheduleLaunchActivity(intent, null, > > > > ai.packageName, "/data/

[android-developers] Re: PackageManager.installPackage() ?

2008-03-24 Thread Ben Dodson
t;, >"/data/data/my.test/", ai.theme, ai.nonLocalizedLabel, ai.labelRes, > null, null, null, false); > > It would work if ApplicationThread class is public. > > 2008/3/24, [EMAIL PROTECTED] < > [EMAIL PROTECTED]>: > > > > > I guess packa

[android-developers] Re: PackageManager.installPackage() ?

2008-03-23 Thread Ben Dodson
ended for use only within its own > package. If an Activity has no matching tag in the manifest, you won't > be able to launch it." > > On Mar 23, 3:17 pm, Ben Dodson <[EMAIL PROTECTED]> wrote: > > > Well it looks like I jumped the gun.. no, I haven't yet

[android-developers] Re: PackageManager.installPackage() ?

2008-03-23 Thread Ben Dodson
activity defined in "/data/data/my.app/files/test.apk" ?! > For start an acitivity in a installed apk, just use > Intent.setClassName(packageName, > foreignClassName) > > 2008/3/23, Ben Dodson <[EMAIL PROTECTED]>: > > > > > Well thanks for the help, I made so