[android-developers] How to include Android Wear but still support earlier devices

2014-08-29 Thread Eddie
Hi, I have recently included android wear support in my app but when I went to publish it today I was made aware my earlier version would be archived. My earlier version was targeting api 16 to include as many devices as possible. I was hoping if a user doesn't have the latest devices

[android-developers] adb push is broken

2012-07-26 Thread Eddie
adb push foo.txt /mnt/extSdCard Does not work now on Galaxy S3 or Tab 2 (7.0) running ICS. I am using latest platform-tools r12. Is there a solution for this? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] adb push is broken

2012-07-26 Thread Eddie
that too. You've got to specify the exact target filename, e.g. adb push foo.txt /mnt/sdcard/foo.txt Using a target directory name was allowed before, but doesn't work anymore. -- K 2012/7/26 Eddie edwardezerg...@googlemail.com adb push foo.txt /mnt/extSdCard Does not work now

Re: [android-developers] adb push is broken

2012-07-26 Thread Eddie
12:06:52 UTC+1, Kostya Vasilyev wrote: 2012/7/26 Eddie edwardezerg...@googlemail.com Thanks Kostya, adb push foo.txt /mnt/extSdCard/foo.txt does not work on Galaxy S3. The mount point of the external sdcard has changed and seems to be causing the problem. adb shell cd /mnt ls

Re: [android-developers] adb push is broken

2012-07-26 Thread Eddie
12:06:52 UTC+1, Kostya Vasilyev wrote: 2012/7/26 Eddie edwardezerg...@googlemail.com Thanks Kostya, adb push foo.txt /mnt/extSdCard/foo.txt does not work on Galaxy S3. The mount point of the external sdcard has changed and seems to be causing the problem. adb shell cd /mnt ls

Re: [android-developers] adb push is broken

2012-07-26 Thread Eddie
I agree it works on /mnt/sdcard IT DOES NOT WORK ON /mnt/extSdCard on a Galaxy S3. Still need a solution. On Thursday, 26 July 2012 14:20:53 UTC+1, Nikolay Elenkov wrote: On Thu, Jul 26, 2012 at 10:14 PM, Kostya Vasilyev kmans...@gmail.com wrote: Haven't thought to try the trailing

Re: [android-developers] adb push is broken

2012-07-26 Thread Eddie
(the removable sdcard on Galaxy S3) and read files. Just can't write there. On Thursday, 26 July 2012 15:25:13 UTC+1, Mark Murphy (a Commons Guy) wrote: On Thu, Jul 26, 2012 at 10:10 AM, Eddie edwardezerg...@googlemail.com wrote: I agree it works on /mnt/sdcard IT DOES NOT WORK ON /mnt

Re: [android-developers] Re: Galaxy S3 - Cant write to external storage

2012-07-25 Thread Eddie
On Tuesday, 24 July 2012 12:26:12 UTC+1, baturanija1 wrote: add permission on user ,and it will workPermission on Write External Storage...Post error if it continue Where do you post errors to baturanija1? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Galaxy S3 - Cant write to external storage

2012-07-24 Thread Eddie
On Friday, 20 July 2012 14:23:09 UTC+1, Eddie wrote: I am attempting to write to the external Sdcard on a Galaxy S3: adb push foo.txt /mnt/extSdCard/foo.txt But this fails with a write permission error. I can cd to /mnt/extSdCard with no problems and ls the contents. I am

Re: [android-developers] Re: Galaxy S3 - Cant write to external storage

2012-07-24 Thread Eddie
On Tuesday, 24 July 2012 12:26:12 UTC+1, baturanija1 wrote: add permission on user ,and it will workPermission on Write External Storage...Post error if it continue Thanks for reply Baturanija. Permissions on /mnt/extSdCard are drwxrwxr-x so owner and group ok. Have tried (via adb

Re: [android-developers] Re: Galaxy S3 - Cant write to external storage

2012-07-24 Thread Eddie
On Tuesday, 24 July 2012 12:14:04 UTC+1, Bharath Smitha wrote: have u added permissions in your manifest file...check it once... Hi Bharath. I am not aware that adb requires any permissions in a manifest file. Manifest permissions are for applications only aren't they? -- You

[android-developers] Galaxy S3 - Cant write to external storage

2012-07-23 Thread Eddie
on the S2 or other handsets. Is there a solution to this? Thanks, Eddie -- 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

[android-developers] Galaxy S3 no write permission on external sdcard

2012-07-23 Thread Eddie
. Is there a solution to this. Thanks in advance, Eddie -- 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

[android-developers] How to turn on-off the physical keyboard programmatically?

2012-03-08 Thread eddie
is appreciated . Thank you Eddie -- 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

[android-developers] Re: Switch from physical to software keyboard

2012-03-08 Thread eddie
iid, I have the same problem. Were you able to find a solution? Thanks, Eddie On Saturday, February 11, 2012 5:39:38 PM UTC-5, iid wrote: Hi all, I'm developing an application that will run on a tablet with Android 3.2. I attached a physical keyboard to tablet then the software keyboard

Re: [android-developers] Re: Switch from physical to software keyboard

2012-03-08 Thread eddie
keyboard? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware iid, I have the same problem. Were you able to find a solution? Thanks, Eddie On Saturday, February 11, 2012 5:39:38 PM UTC-5, iid wrote: Hi all, I'm developing an application

[android-developers] Re: Voice recognition through bluetooth

2012-02-09 Thread Eddie
Does anybody have any thoughts on this? On Dec 30 2011, 7:42 am, Eddie ed.ka...@gmail.com wrote: Hi, I have speech recognition working in my activity. However, I realized that if I have a bluetooth headset connected to my phone, the recognition still only occurs through the phone mic

[android-developers] Voice recognition through bluetooth

2011-12-30 Thread Eddie
Hi, I have speech recognition working in my activity. However, I realized that if I have a bluetooth headset connected to my phone, the recognition still only occurs through the phone mic and not my headset mic. How can I make it so that the recognition occurs through the bluetooth mic?

[android-developers] How to use onTap method to return to previous activity

2010-09-07 Thread Eddie Hsieh
Hi, I want to create a icon on google map while users click on this icon can return to previous activity. I have already searched some documents, I also know that I have to use the onTap method but I still can't handle this problem. My question is how to write the code to override the onTap method

[android-developers] Re: best way to debug ANR...

2010-08-12 Thread Eddie Ringle
adb logcat? On Aug 11, 5:21 pm, sdphil phil.pellouch...@gmail.com wrote: hi.  what is the best way to debug ANR.  ideally, it would be nice to know what call / thread / file and line number it is stalled at when the ANR occurs, but every time I look at /anr/traces.txt, I can't seem to find

[android-developers] location.getTime() returns strange result

2010-07-26 Thread Eddie J
I am developing using Eclipse targeting a Samsung Moment M900.8.0 running 2.1-update1. The value I get when I do a location.getTime is WAY off what it should be when compared to the System time. The Lat and Lon are reasonable, the time is crazy! I have read and re-read the documentation. It is

[android-developers] Re: Change Developer Account

2010-06-02 Thread Eddie Ringle
Renaming the apk will do nothing, you would have to at least change the package name. On Jun 2, 1:36 am, Brad Gies rbg...@gmail.com wrote: My guess is that it won't work. I unpublished an app several months ago, and it still shows in my developer account. I think you will have to rename your

[android-developers] Re: Android Dev Phone with 2.x?

2010-05-20 Thread Eddie Ringle
I think the Nexus One counts as the current unofficial Android Developer Phone. (Unofficial in that it hasn't been given that title officially) On May 14, 9:36 am, Tomáš Hubálek tom.huba...@gmail.com wrote: Hello, I'm owner of ADP1 (1.6 device) but majority of my users have 2.x version. Does

[android-developers] Re: JIT compiler explanation

2010-05-03 Thread Eddie Ringle
The upcoming JIT for Dalvik will look for hot pieces of code and compile it to native machine code, resulting in a speed boost. The JIT is not there to convert Java bytecode to Dalvik bytecode, as Android applications should already compile to Dalvik bytecode. On May 3, 1:04 am, Justin King

[android-developers] Re: 14-year-old Android Developer:

2010-04-22 Thread Eddie Ringle
Yeah, I'm 15 (will be 16 in May), and I haven't made much just yet, but that is more due to the target audience of my app (GitHub users) and the fact that a free version is available. I only make money if someone chooses to buy the donate version (there are ads on the free verison, but they aren't

[android-developers] Re: Swipe to next screen

2010-04-21 Thread Eddie Ringle
it with the next one. I have seen this tutorial posted on this group before regarding this topic:http://whyandroid.com/android/174-flipping-your-views.html ... I have not tried it, however. -Nick On Apr 20, 5:11 am, Eddie Ringle ed...@eringle.net wrote: If you look at the Google News Weather

[android-developers] Swipe to next screen

2010-04-20 Thread Eddie Ringle
If you look at the Google News Weather app, you can swipe over to the next page. Anyone know how this is done? I'm suspecting that it is all one activity, the tabs at the top are a custom TabView, and it works similar to that? Eddie Ringle ed...@eringle.net http://eddieringle.com/ -- You

[android-developers] Re: Opengl

2010-04-19 Thread Eddie Ringle
The way I'm doing it right now is drawing a quad with dimensions identical to that of the world size, and texturing the whole thing with my background image. (Works pretty well because my world isn't so big.) On Apr 18, 11:42 pm, risha risha.kott...@wipro.com wrote: Let me know how to set up a

[android-developers] Re: Is the bad MotionEvent/Touch slowdown stuff actually fixed on first-gen 2.1 updates?

2010-04-19 Thread Eddie Ringle
Starring it. My poor G1 has a tough enough time with hardware rendering, no need to put added strain on it. On Apr 19, 3:29 am, Robert Green rbgrn@gmail.com wrote: I filed a bug for this here -http://code.google.com/p/android/issues/detail?id=7836 I believe I did a thorough job with the

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
) {     Game.sInstance.render();   }   Thread.sleep(5); } I defined the updatethread as class inside of the Renderer because it is so small. This gave me a huge performance boost. Handling the app lifecycle is less easy (at least for me). On Apr 9, 3:09 am, Eddie Ringle ed...@eringle.net wrote

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
Another thought occurred to me. I'm more comfortable with the old- fashioned game loop, and I noticed I can turn off auto-rendering. I'll see if this works out instead. On Apr 9, 8:55 am, Eddie Ringle ed...@eringle.net wrote: I'm a bit confused. What exactly is Game.sInstance? And can you

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
the updatethread as class inside of the Renderer because it is so small. This gave me a huge performance boost. Handling the app lifecycle is less easy (at least for me). On Apr 9, 3:09 am, Eddie Ringle ed...@eringle.net wrote: Surprisingly, I don't seem to have issues with the OpenGL side

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
can set up positioning of touchable UI components but otherwise it's always GameThread updates World, WorldRenderer draws World, repeat. On Apr 9, 11:25 am, Eddie Ringle ed...@eringle.net wrote: Where do you store all your attributes, like player position? Currently I just have a GLQuad

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
the address of world, which is the address of GameView.java's _world, right? On Apr 9, 2:49 pm, Eddie Ringle ed...@eringle.net wrote: One more thing question and I think I will be set. Coming from a C/C++ background, I enjoyed the use of references. I know that there is a way to pass

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
Green rbgrn@gmail.com wrote: Eddie, Yes, that'll do the trick. As far as the multiple threads goes, sure you can drive your logic off of the call to onDrawFrame but there is a situation in which having a separate thread makes sense: After onDrawFrame, the rendering thread is finishing

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-09 Thread Eddie Ringle
. hth, Mario On 9 Apr., 22:39, Eddie Ringle ed...@eringle.net wrote: Robert, Silly question, but how do you get input to the logic thread? I have to get sensor and touch data from the main Activity class and somehow get it to the logic thread. Current program flow is as follows

[android-developers] Android OpenGL Game - App Architecture and Threading Logic

2010-04-08 Thread Eddie Ringle
Surprisingly, I don't seem to have issues with the OpenGL side of things (which is very unusual), but my problems stem from getting a clear idea for app architecture and a few other problems. Right now, most tutorials on the net just describe the render portion. I know that when I create a

[android-developers] Re: How to parse JSON in Java?

2010-04-07 Thread Eddie Ringle
By the way, that is invalid JSON. On Apr 7, 5:05 am, Maxood maqs...@salsoft.net wrote: I have the following JSON text that i need to parse to get pageName, pagePic, post_id, etc. What is the required code? pageInfo: { pageName: abc pagePic:http://profile.ak.fbcdn.net/object2/367/…} posts:

[android-developers] Re: Maintaining a free and paid version maybe other version

2010-04-06 Thread Eddie Ringle
I use a Git repo to manage all of my project's code. I store the meat of the code on GitHub, while I have local 'free' and 'donate' branches, each with slight modifications of their own. When the time comes to get a new release ready, I just merge the changes from the master branch into each of

[android-developers] Re: Google vs Flurry

2010-01-27 Thread Smelly Eddie
I use Flurry and have been mostly content with it. The event tracking is very nice, and allows up to 10 custom parameters for each event (Ie. event:move disc, old position :1, new pos. : 5, queuetype: disc, etc, etc) The downside is that they lack some detail in error reporting (like class,

[android-developers] Re: RatingBar size issues on high-density screens (Droid, Nexus One)

2010-01-26 Thread Smelly Eddie
SOLVED I had been targeting all platforms 3 - 7 using the min and max adk target. Turns out that including 3 as the min would make wacky stars. Bump it up to 4 and stars look fine. Sooo now I'll have to fork a version for 1.5 users. On Jan 21, 4:19 pm, Smelly Eddie ollit...@gmail.com wrote

[android-developers] Re: RatingBar size issues on high-density screens (Droid, Nexus One)

2010-01-21 Thread Smelly Eddie
Surely someone has an idea. I have continued to search the SDK reference and resources but I can't even ind an allusion to the layout/ formatting issues with high-density screens. On Jan 20, 6:32 pm, Smelly Eddie ollit...@gmail.com wrote: Hello Group -  I am hoping someone that has formatted

[android-developers] Re: RatingBar size issues on high-density screens (Droid, Nexus One)

2010-01-21 Thread Smelly Eddie
Apparently Nexus is actuall an medium density screen. So are G1s... I would like to avoid specifying every possible resoltion. Is there an easier way to distinguish whatever difference is causing this usse? On Jan 21, 3:21 pm, Smelly Eddie ollit...@gmail.com wrote: Surely someone has an idea

[android-developers] RatingBar size issues on high-density screens (Droid, Nexus One)

2010-01-20 Thread Smelly Eddie
it... Perhaps a custom layout for those type of screens - but what do i set differently? Do I need to override the measure function, or specify something differently for Droid and Nexus type screens? Regards! Eddie -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Any way to uninstall application with persistent=true?

2009-12-28 Thread Eddie
Any way to do so? -- 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...@googlegroups.com For more

[android-developers] Re: androidplayground.net

2009-12-18 Thread Smelly Eddie
The site uses Paypal for subscriptions too, not just donations. And paypal has clear polices on infringement. Report here https://cms.paypal.com/be/cgi-bin/?cmd=_render-contentcontent_ID=ua/InfringementRpt_full On Dec 17, 8:43 pm, Guess Who, You Probably have my Number nnarb...@gmail.com wrote:

[android-developers] Re: how to fetch datas from database like mysql/sqlite

2009-11-24 Thread Smelly Eddie
1) don;t double post 2) RTFM On Nov 24, 7:08 am, siva siva80san...@gmail.com wrote: HI        how to fetch datas  from database like mysql / sqlite.can any one help me in this,i have tried the examples gave in the NOTEPAD sample.its not working(it dont shows any errors.) can any one guide

[android-developers] Re: Unable to determine signal strength on Droid / Android 2.0 (onSignalStrengthsChanged deprecated)

2009-11-17 Thread Smelly Eddie
The documentation seems to distinguish onSignalStrengthChanged (deprecated) from onSignalStrengthsChanged note the 's' So which method are you using on 2.0? Ken Adair wrote: The typical method to obtain signal strength has been to extend the PhoneStateListener class and override the

[android-developers] Re: custom protocol handler...

2009-11-12 Thread Smelly Eddie
, Eddie On Nov 11, 12:09 pm, sdphil phil.pellouch...@gmail.com wrote: i want to do the following thing - when a user navigates to a web page, I want to have a link in there that looks like this:     pa href=myprotocol://blah=42Click here for fun./a/p Then when the user clicks on that from

[android-developers] Re: ADC2 Judging App FC

2009-11-11 Thread Smelly Eddie
I was able to install and rate about 8 applications before I hit Cartoon Gang. Not only is the app's premise quite ridiculous, but the size is monstrous and now I get FC every time I try to install. ADC2 app says it downloaded, but I need to manually install. As soon as I try i get the same FC

[android-developers] Re: need help to figure out the issue with emulator on Fedora 10 64 bit. I'm new to this development.

2009-11-09 Thread Smelly Eddie
Unlike some other flavors fedora64 does not natively support 32bit apps. But you caneasily add support by grabbing some additional libs. Adding support for android sdk on fedora 64 http://edwardawebb.com/site-news/running-android-sdk-64bit-fedora-11 Hth, Eddie On Nov 7, 5:33 am, jonnals

[android-developers] Market Download Stats

2009-10-26 Thread Smelly Eddie
I know Google is quite diligent when it comes to Data Warehousing. Beyond the simple 'Active Installs' and 'Total installs' I am sure they have a whole treasure chest of useful information like active versions, Android Release version, hardware, and uninstall reasons (based on the prompt users

[android-developers] Re: Market Download Stats

2009-10-26 Thread Smelly Eddie
, 12:40 pm, Smelly Eddie ollit...@gmail.com wrote: I know Google is quite diligent when it comes to Data Warehousing. Beyond the simple 'Active Installs' and 'Total installs' I am sure they have a whole treasure chest of useful information like active versions, Android Release version

[android-developers] Re: how to capture browser activity or callback

2009-10-23 Thread Smelly Eddie
to get the token              } This gives me a chance to filter the incoming URL.  I am not sure if there are other ways to do this. Carmen -- Carmenhttp://www.twitter.com/CarmenDelessiohttp://www.talkingandroid.com On Tue, Sep 15, 2009 at 10:35 AM, Smelly Eddie ollit...@gmail.com wrote: I

[android-developers] Android Market Down? - Unable to see my Published Apps

2009-10-23 Thread Smelly Eddie
When i log onto the publisher section of Android I get error; http://market.android.com/publish/Home Failed to load application list. Try again later. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Advice on Beta Release

2009-10-22 Thread Smelly Eddie
which provides my with a very good overview of the average fail rate. Once the rate of failure goes down to an acceptable level I will release it to the Google Android Market finally. -- Andréhttp://android.rabold.org On 15 Okt., 21:57, Smelly Eddie ollit...@gmail.com wrote: SO i have

[android-developers] Re: Advice on Beta Release

2009-10-22 Thread Smelly Eddie
apps (settings) They can have their own section, or just get thrown in with the rest, but special formatting applied (eg red title, or special beta icon) On Oct 22, 11:22 am, Smelly Eddie ollit...@gmail.com wrote: I think i will stick with Andrei's advice and release it into android market

[android-developers] Advice on Beta Release

2009-10-15 Thread Smelly Eddie
SO i have an application that is doing pretty well on my dev. device, and it is almost ready for prime time. Trouble is I am only one man, so I would like to release the application under a beta release to work out any prominent bugs with a more strenuous workout. So I was thinking; * Just

[android-developers] Re: xmlpullparser does not work

2009-10-15 Thread Smelly Eddie
Hmm. I would consider using the SAX parser, and creating a custom handler to handle the xml. I think i made that suggestion in one of your previous posts. SAX is generally acknowledged as the faster option than PULL. Not only is the above code very difficult to decipher, but it will make

[android-developers] Re: can I get XML information step by step using SaxParser??

2009-10-14 Thread Smelly Eddie
SaxParser walks through an XML file calling key events startElement, endElement, and others. You can use these events to do whatever you need at any point in the document. So once we reach the start of trk we know all waypoints have been read right? You should call the parser in a background

[android-developers] Setting ImageView from the web using URI

2009-10-13 Thread Smelly Eddie
I need to display an image that is pulled from the web using a url. I tried the following, unsuccessfully; boxart.setImageURI(Uri.parse(http://example.com/image.jpg;)); I assume I need to create a local drawable and retrieve the image from the web. All the examples in the

[android-developers] How to hide views within a layout

2009-10-13 Thread Smelly Eddie
I have some optional views in my xml layout. Namely a radioGroup and buttons. How can I hide these programtically? I tried setting Visisbility, but that through an exception. Is this documented anywhere? --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: Please Help Urgent: Get active context dynamically of an application

2009-09-24 Thread Smelly Eddie
Your question is no more 'urgent' than anyone elses. Please respect etiquette and only post questions once. On Sep 24, 5:22 am, Atif Gulzar atif.gul...@gmail.com wrote: I posted this questions twice. I will really appreciate your help. Am I asking very basic or vice versa? Or it is not

[android-developers] How to suggest Dev.android guide updates

2009-09-24 Thread Smelly Eddie
I have noticed a few minor things in the devguide that could be updated, debugging and android device on Jaunty Jackalope for instance. Is there a manner to submit recommendations to these pages? --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Please help me !

2009-09-21 Thread Smelly Eddie
please help me is a useless topic title. You are not going tom get valuable help this way. Please trya clear title that rel;ates to ty7our problem. and in the text describe what you ahve tried or read until this point, and why that may not be working. This is not a 'code my app' forum On Sep

[android-developers] How to Force browser activity to close after passing control

2009-09-21 Thread Smelly Eddie
closes my app, any outside activities called will be closed to. Question 2: Does a callback URl start a new Task, or use one in the stack if available? Regards, Eddie --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: how to capture browser activity or callback

2009-09-15 Thread Smelly Eddie
I hate to bump, but this got covered yesterday by 20+ posts fromm the same user at 4:18. Anyone have experiencing using schemes and callback uris? Regards, Eddie On Sep 14, 3:52 pm, Smelly Eddie ollit...@gmail.com wrote: My activity calls a browser activity where the users submits

[android-developers] how to capture browser activity or callback

2009-09-14 Thread Smelly Eddie
My activity calls a browser activity where the users submits their info to retrieve a PIN. That PIN is then sent as a parameter to a url specified in the request. I tried adding a scheme to my activity -- data android:scheme=myscheme android:pathPrefix=myscheme

[android-developers] Mute built in music app?

2009-06-28 Thread Eddie Raleigh
Is there any way to mute just the sound coming from the built in music application without muting all STREAM_MUSIC? I would like my sound effects to play 'over' the built in music app. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Audio Streams

2009-06-24 Thread Eddie
I am developing an Android application in which I would like the audio of my application to play 'over' background music (in particular, music from the built in music app). Ideally my application will mute any music currently being played (I would like to have pausing be an option but would

[android-developers] Retrieving the default email from the email client provided by Android

2009-06-23 Thread Eddie Ayling
is this information stored? How can I reach it? Cheers, Eddie --~--~-~--~~~---~--~~ 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

[android-developers] Re: Development in G1 in Ubuntu 9.04

2009-06-09 Thread Eddie Ringle
It is the priority in which that rule is ran. The higher the number, the later it is run. By the way, you can also run: sudo udev restart After the rule is in place. This worked for me. Eddie Ringle On May 30, 2:20 pm, Abdul Mateen abmat...@gmail.com wrote: I want to know what these number

[android-developers] Re: Development in G1 in Ubuntu 9.04

2009-06-09 Thread Eddie Ringle
Whoops, that command should look like: sudo /etc/init.d/udev restart On Jun 9, 11:06 am, Eddie Ringle ed...@eringle.net wrote: It is the priority in which that rule is ran. The higher the number, the later it is run. By the way, you can also run: sudo udev restart After the rule

[android-developers] Deployment

2008-09-30 Thread Eddie
like what iPhone does? Regards, Eddie --~--~-~--~~~---~--~~ 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