[android-developers] Re: Market paid-for apps

2008-12-31 Thread g1bb
I understood the same thing, yes. On Dec 31, 9:51 am, Al Sutton a...@funkyandroid.com wrote: Did anyone else get the email saying that initially only developers operating in the US and UK will be allowed to sell apps in Market? The email says this will be followed by German, Austria, and the

[android-developers] Text animation question

2009-01-09 Thread g1bb
Hello, I'm working on some text animation with 2 left and right buttons, iterating through an array, and scrolling the text off of the screen (so left button scrolls the text off the screen to the left, and vice- versa). The problem I'm finding, is that I want to keep the current text until the

[android-developers] Re: Text animation question

2009-01-10 Thread g1bb
. There is com.example.android.apis.view.TextSwitcher1 class there. It is good demonstration of using TextSwitcher class. Hope this helps. On Jan 10, 8:07 am, g1bb corymgibb...@gmail.com wrote: Hello, I'm working on sometextanimationwith 2 left and right buttons, iterating through an array, and scrolling

[android-developers] Launching Multiple Activities?

2009-01-18 Thread g1bb
Hello, I have an activity that links to other activities via buttons. When a user clicks these buttons, I launch other activities with startActivity (), which has been working fine. My problem is, one of my activities displays a progressdialog when it is loading. I would like to only do this

[android-developers] Re: Launching Multiple Activities?

2009-01-18 Thread g1bb
it. - Original Message - From: g1bb corymgibb...@gmail.com To: Android Developers android-developers@googlegroups.com Sent: Sunday, January 18, 2009 8:32 PM Subject: [android-developers] Launching Multiple Activities? Hello, I have an activity that links to other activities via

[android-developers] Stream a very large mp3?

2009-03-11 Thread g1bb
Hello, Is it possible to stream a very large mp3 using MediaPlayer? The mp3 I am interested in is over 270 mb. Thanks in advance! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Stream a very large mp3?

2009-03-11 Thread g1bb
Method) 03-12 01:22:11.006: ERROR/MediaPlayer(324): start called in state 0 03-12 01:22:11.026: ERROR/MediaPlayer(324): Error (-38,0) On Mar 11, 7:00 pm, g1bb corymgibb...@gmail.com wrote: Hello, Is it possible to stream a very large mp3 using MediaPlayer? The mp3 I am interested in is over 270

[android-developers] When does my thread die?

2009-01-23 Thread g1bb
Hello, I've created an app that functions as a countdown timer via a thread, a wakelock, and a handler back to my activity. My question is, what will cause my thread to die, or app to not be running in memory anymore? I've had this happen once, and can't seem to recreate it again. Thanks in

[android-developers] Re: When does my thread die?

2009-01-23 Thread g1bb
 am, g1bb corymgibb...@gmail.com wrote: Hello, I've created an app that functions as a countdown timer via a thread, a wakelock, and a handler back to my activity. My question is, what will cause my thread to die, or app to not be running in memory anymore? I've had this happen once

[android-developers] Re: When does my thread die?

2009-01-23 Thread g1bb
Thanks Dianne. On Jan 23, 10:45 am, Dianne Hackborn hack...@android.com wrote: On Fri, Jan 23, 2009 at 7:47 AM, g1bb corymgibb...@gmail.com wrote: I realized this right after I posted, by running a bunch of other apps while my app was still running. It seems like 'setPersistent

[android-developers] Sleep on END_CALL keycode, but terminate on HOME?

2009-01-25 Thread g1bb
Hello, I have an activity that I would like the user to be able to put to sleep once the end call button is pressed, but terminate once the back or home buttons are pressed. Since it seems that end call and home both call OnPause(), is there a good way to do this? Thanks!

[android-developers] Re: Sleep on END_CALL keycode, but terminate on HOME?

2009-01-26 Thread g1bb
over it. On Jan 26, 2:46 am, g1bb corymgibb...@gmail.com wrote: Hello, I have an activity that I would like the user to be able to put to sleep once the end call button is pressed, but terminate once the back or home buttons are pressed. Since it seems that end call and home both call

[android-developers] Custom dialog in PreferenceActivity loaded from addPreferencesFromResource()?

2009-02-04 Thread g1bb
Hello, I have a 'settings' screen that is loaded from an XML layout like so: 'addPreferencesFromResource(R.layout.Settings)'. I have a DialogPreference/ in place that is working ok, but I'd like to spruce it up a bit, including adding text to be read from a file. Is this possible? How can I go

[android-developers] Re: Custom dialog in PreferenceActivity loaded from addPreferencesFromResource()?

2009-02-05 Thread g1bb
Gotcha. I'm trying to do this in onSharedPreferenceChanged(), but I can't seem to get it to hit. public class Settings extends PreferenceActivity implements OnSharedPreferenceChangeListener { public static final String PREFS_NAME = com.myapp.app_preferences; @Override

[android-developers] Re: Custom dialog in PreferenceActivity loaded from addPreferencesFromResource()?

2009-02-10 Thread g1bb
Anyone have any ideas on this? Thanks again! On Feb 5, 7:23 am, g1bb corymgibb...@gmail.com wrote: Gotcha. I'm trying to do this in onSharedPreferenceChanged(), but I can't seem to get it to hit. public class Settings extends PreferenceActivity implements OnSharedPreferenceChangeListener

[android-developers] MediaRecorder Sound Quality?

2009-02-11 Thread g1bb
Hello, Is anyone else experiencing poor playback quality on files recorded with MediaRecorder? Is there a way to improve this? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Problem with SDK 1.1 - can not see javadoc

2009-02-11 Thread g1bb
Same here! On Feb 10, 7:45 am, NJ neerhajnjo...@gmail.com wrote: yeah, I am having the same problem, still haven't found a solution. On Feb 10, 1:26 pm, tranbinh.b...@gmail.com tranbinh.b...@gmail.com wrote: Dear all, I have just upgraded the SDK version to 1.1. But after that, I can

[android-developers] Re: MediaRecorder Sound Quality?

2009-02-11 Thread g1bb
Thanks, Dave. On Feb 11, 9:12 pm, Dave Sparks davidspa...@android.com wrote: The codec is AMR-NB with an 8KHz sample frequency. In the Cupcake release we will provide access to the raw 16-bit PCM stream so you can do your own encoding or signal processing. On Feb 11, 9:18 am, g1bb corymgibb

[android-developers] Re: Problem with SDK 1.1 - can not see javadoc

2009-02-12 Thread g1bb
Are we the only ones experiencing this? I haven't found any other posts related. On Feb 11, 8:48 pm, g1bb corymgibb...@gmail.com wrote: Same here! On Feb 10, 7:45 am, NJ neerhajnjo...@gmail.com wrote: yeah, I am having the same problem, still haven't found a solution. On Feb 10, 1:26

[android-developers] Re: SDK Network Snifing

2009-02-12 Thread g1bb
I've been signing onto my wireless network (with g1) and using ettercap to sniff with no problems. On Feb 12, 4:03 pm, Mattaku Betsujin mattaku.betsu...@gmail.com wrote: What will be good is to have some high-level protocol sniffing as well, built-into the SDK. I am sure most people want to

[android-developers] Setup Merchant Account link now available

2009-02-13 Thread g1bb
I noticed a 'Setup a Merchant Account at Google CheckoutFree' is now available at market.android.com, but not functional yet. We're getting closer! Is the link working for anyone? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] App Description Character Limit - 325 Characters?

2009-02-13 Thread g1bb
Is there any idea if this will increase in the future? This is extremely limiting. --~--~-~--~~~---~--~~ 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] Re: Problem with SDK 1.1 - can not see javadoc

2009-02-16 Thread g1bb
Anyone figure this out? On Feb 13, 9:41 am, Alexey avolo...@gmail.com wrote: Same here. On Feb 10, 2:26 am, tranbinh.b...@gmail.com tranbinh.b...@gmail.com wrote: Dear all, I have just upgraded the SDK version to 1.1. But after that, I can not see thejavadocof the methods. Example:

[android-developers] App Copy Protection

2009-02-16 Thread g1bb
Quote from the Market upload page: (Helps prevent copying of this application from the device. Increases the amount of memory required by users to install the application) Any ideas on how _much_ more memory will be required? Thanks! --~--~-~--~~~---~--~~ You

[android-developers] Re: App Copy Protection

2009-02-17 Thread g1bb
Thanks, Dianne. On Feb 16, 6:42 pm, Dianne Hackborn hack...@android.com wrote: 2x - the space used by your .dex file. On Mon, Feb 16, 2009 at 5:25 PM, g1bb corymgibb...@gmail.com wrote: Quote from the Market upload page: (Helps prevent copying of this application from the device

[android-developers] Are paid apps coming tomorrow?

2009-02-17 Thread g1bb
Is there a particular time of day that they'll start showing up? Thanks! --~--~-~--~~~---~--~~ 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] Re: is there a standard EULA?

2009-02-18 Thread g1bb
Doh. Got the link wrong on that last one: EULA generator: http://www.xs.fi/static/eula/ On Feb 18, 9:44 am, g1bb corymgibb...@gmail.com wrote: Hey Mike, Here's a standard EULA class that I'm using in my code:http://code.google.com/p/apps-for-android/source/browse/trunk/DivideA

[android-developers] Re: is there a standard EULA?

2009-02-18 Thread g1bb
Hey Mike, Here's a standard EULA class that I'm using in my code: http://code.google.com/p/apps-for-android/source/browse/trunk/DivideAndConquer/src/com/google/android/divideandconquer/Eula.java?r=93 As for the actual text of the EULA, it's probably either hire a lawyer, or use something like

[android-developers] Re: Google: We need to know how paid app transactions will work!

2009-02-18 Thread g1bb
Though Google Checkout, and an apparent beta tester (?) purchase, I can see Name, address, phone number, and e-mail address. Hope this helps. On Feb 18, 10:32 am, john jbatk...@gmail.com wrote: Please join me in pleading with Google to shed some light on the Paid App transaction process.

[android-developers] Paid applications - are they downloadable now? By Al Sutton

2009-02-19 Thread g1bb
Please stop changing the subject of this thread. On Feb 19, 12:26 pm, Ward Willats goo...@wardco.com wrote: Strike that, you must NOT use quotes, so the 3 rules are: 1. Param array same size as number of wildcards 2. No null values 3. Don't surround ? with '?' Programming is hard. --

[android-developers] Re: Paid applications - are they downloadable now? By Al Sutton

2009-02-19 Thread g1bb
I don't know... but I doubt it. I'm just going to keep checking my phone every 2 minutes. On Feb 19, 2:37 pm, Stoyan Damov stoyan.da...@gmail.com wrote: Does anybody know if there will be announcement on this list when paid apps become available for users? On Thu, Feb 19, 2009 at 11:18 PM,

[android-developers] Re: Android 1.1_r1 SDK released and developer.android.com launched

2009-02-19 Thread g1bb
Same here. Thanks guys. On Feb 19, 6:52 am, Guillaume Perrot guillaume.p...@gmail.com wrote: You're right all MD5 checksums have changed, so I gave it a try. Javadoc is now working! 2009/2/19 david liu wanqing.da...@gmail.com: I just saw one email about this, there is one fix you can

[android-developers] Re: Android Market: server error when authorizing credit card

2009-02-20 Thread g1bb
Are you trying to purchase your own app? I got the same error when I did, but not when I purchased someone else's. On Feb 20, 10:58 am, SR stan.r...@gmail.com wrote: Hi all, I've been trying to buy some apps but have been getting a server error after Authorizing credit card... bubble shows

[android-developers] Re: TeluguBabes MONICA BATHING SHOW

2009-02-20 Thread g1bb
great On Feb 20, 12:08 pm, shakeela shakeela shakeela...@googlemail.com wrote:  CLICK HERE http://tamilcinemamasala.blogspot.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Can't see comments in my app?

2009-02-21 Thread g1bb
Hello, I can't seem to view comments in my own application. Is anyone else having this issue? Thanks. --~--~-~--~~~---~--~~ 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] Re: Market Process

2009-02-21 Thread g1bb
Each transaction in Google Checkout has a unique order number associated with it. Also, all data is exportable to .csv. On Feb 21, 6:59 am, deepdr...@googlemail.com deepdr...@googlemail.com wrote: as there are now paid applications out there, maybe one of the paid applications developers can

[android-developers] Re: Can't see comments in my app?

2009-02-21 Thread g1bb
is that it is not listing the protected apps. ---snctlnwww.snctln.com On Feb 21, 9:03 am, g1bb corymgibb...@gmail.com wrote: Hello, I can't seem to view comments in my own application. Is anyone else having this issue? Thanks. --~--~-~--~~~---~--~~ You received

[android-developers] Re: Can't see comments in my app?

2009-02-21 Thread g1bb
Actually, 100% correct. I just turned off protection and Cyrket updated immediately. On Feb 21, 1:08 pm, g1bb corymgibb...@gmail.com wrote: I'm attempting to view the comments on my G1 (not ADP). And I believe you are correct on your theory with the protected apps and Cyrket. On Feb 21, 9

[android-developers] Re: Market Process

2009-02-21 Thread g1bb
Order #, Merchant Order #, Order Creation Date, Currency, Amount, Amount Charged, Financial Status, Fullfillment Status On Feb 21, 11:45 am, deepdr...@googlemail.com deepdr...@googlemail.com wrote: now, what exactly is all data? thanks - On Feb 21, 4:14 pm, g1bb corymgibb...@gmail.com wrote

[android-developers] Re: Access Linux shell command from within the Android SDK

2009-02-24 Thread g1bb
You can telnet in using 'telnet localhost 5554'. On Feb 24, 1:08 pm, steve68 my6...@gmail.com wrote: Is it a way to access Linux shell command from with the Android Java SDK? I would like to do it as a root user after the user gives the permission.

[android-developers] Can I turn the 'protect my app' feature back on now?

2009-02-26 Thread g1bb
Are users going to be able to download updates that I publish? Was this even the cause of the issue? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Icons - Recommended size, format, etc?

2008-11-07 Thread g1bb
Hello, Is there a recommended size or format for an application's icon? I've been using .PNG at 190x141 px, but I can never seem to get them as 'cool' looking as the other applications I've seen. Thanks in advance. --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: Trouble with SoundPool

2008-11-09 Thread g1bb
(soundPoolMap.get(sound), streamVolume, streamVolume, 1, 0, 1f);                         }                 }         }         public void setEnabled(boolean enabled) {                 this.enabled = enabled;         } } On Nov 9, 4:28 am, g1bb [EMAIL PROTECTED] wrote: Hello, I

[android-developers] AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-10 Thread g1bb
Hello, I've been trying to use AlarmManager.RTC_WAKEUP to wake up my device while it's sleeping, and then play some sounds. It seems like when it's charging, this works fine, but when it's not, the service doesn't start until I hit the menu button and am presented with the lock screen. Also,

[android-developers] Re: AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-11 Thread g1bb
Interesting... I'll give that a shot. Thanks. On Nov 11, 3:51 am, hackbod [EMAIL PROTECTED] wrote: It does wake it up, but you are going to need to hold a wake lock to keep the device awake after your intent receiver returns. On Nov 10, 11:14 pm,g1bb[EMAIL PROTECTED] wrote: Hello

[android-developers] Re: AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-11 Thread g1bb
, hackbod [EMAIL PROTECTED] wrote: It does wake it up, but you are going to need to hold a wake lock to keep the device awake after your intent receiver returns. On Nov 10, 11:14 pm,g1bb[EMAIL PROTECTED] wrote: Hello, I've been trying to use AlarmManager.RTC_WAKEUP to wake up my device while

[android-developers] Re: AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-11 Thread g1bb
Maybe PARTIAL_WAKE_LOCK, looking at it now... interesting. On Nov 11, 10:45 am, g1bb [EMAIL PROTECTED] wrote: Another question on this: Have you seen the Stopwatch application developed by Tom Taylor? I just downloaded it, and it keeps counting after the phone is put to sleep entirely. Any

[android-developers] Re: AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-12 Thread g1bb
from what I could tell, unless I use Process.Kill();. Thanks again! On Nov 11, 2:38 pm, hackbod [EMAIL PROTECTED] wrote: Yes, for both these things, you need to hold a partial wake lock to keep the phone from turning off. On Nov 11, 12:02 pm, g1bb [EMAIL PROTECTED] wrote: Maybe

[android-developers] Re: AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-12 Thread g1bb
Hi Mark, Sorry, I forgot to mention that I would like to destroy the activity from a different class not associated with the activity. Is that possible? Thanks again. On Nov 12, 11:32 am, Mark Murphy [EMAIL PROTECTED] wrote: g1bb wrote: Is there a good way to destroy the activity

[android-developers] Re: AlarmManager.RTC_WAKEUP Not Waking Device?

2008-11-12 Thread g1bb
of the intent. On Nov 12, 12:51 pm, Mark Murphy [EMAIL PROTECTED] wrote: g1bb wrote: Hi Mark, Sorry, I forgot to mention that I would like to destroy the activity from a different class not associated with the activity. Is that possible? Provide that class with a reference to your

[android-developers] HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Hello, Sorry for my lack of technical terminology when referring to this, but I can't figure out what it's called! I've built a custom view for a horizontal slider as described in the following URL: http://www.helloandroid.com/node/250 This works great, but I'd like to show the user an actual

[android-developers] Re: HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Could be attribute 'scrollbarAlwaysDrawHorizontalTrack' Will give it a shot tonight. On Nov 14, 9:31 am, g1bb [EMAIL PROTECTED] wrote: Hello, Sorry for my lack of technical terminology when referring to this, but I can't figure out what it's called! I've built a custom view

[android-developers] Re: HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Bleh... never mind. Just found out about the SeekBar widget: http://code.google.com/android/reference/android/widget/SeekBar.html On Nov 14, 10:46 am, g1bb [EMAIL PROTECTED] wrote: Could be attribute 'scrollbarAlwaysDrawHorizontalTrack' Will give it a shot tonight. On Nov 14, 9:31 am, g1bb

[android-developers] Re: HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Yep got it. Thanks. On Nov 14, 10:56 am, kolby [EMAIL PROTECTED] wrote: Doesn't the SeekBar implement what you want already? Including the thingy-ma-bob, aka the draggable thumb? Michael On Nov 14, 12:46 pm, g1bb [EMAIL PROTECTED] wrote: Could be attribute

[android-developers] Re: :: How to store the Higest Scores of the players who download my Game

2008-11-17 Thread g1bb
It sounds like you'll want to store the scores in your own database on the Internet somewhere. Whether this would best be done through a web service or something similar, I don't know. On Nov 17, 2:52 am, Imran [EMAIL PROTECTED] wrote: Hi    Hey  i have gone through Iphone Game where there is

[android-developers] TabHost and New Activities

2008-11-22 Thread g1bb
Hello, I've been trying to start new activities based on a TabHost using the following code: setContentView(R.layout.main); TabHost tabs = (TabHost)this.findViewById(R.id.th_set_menu_tabhost); tabs.setup();

[android-developers] Re: TabHost and New Activities

2008-11-22 Thread g1bb
Gotcha, but how do I define activityGroup as a LocalActivityManager? (I assume that's what it's wanting) Sorry, I can't find much documentation on this. Thanks again. On Nov 22, 3:20 pm, Mark Murphy [EMAIL PROTECTED] wrote: g1bb wrote: I've been trying to start new activities based

[android-developers] Re: TabHost and New Activities

2008-11-23 Thread g1bb
this? Thanks again for the help... I'm still pretty new with Java. On Nov 22, 6:05 pm, Mark Murphy [EMAIL PROTECTED] wrote: g1bb wrote: Gotcha, but how do I define activityGroup as a LocalActivityManager? (I assume that's what it's wanting) If you're not subclassing TabActivity, can you

[android-developers] Re: TabHost and New Activities

2008-11-23 Thread g1bb
Hi Mark, My question now is, now that I have the subclass created, how do I create the tabs using _it_, instead of how I was doing it before via the code in my first post? Thanks again for your help. On Nov 23, 12:23 pm, Mark Murphy [EMAIL PROTECTED] wrote: g1bb wrote: I have no problem

[android-developers] Re: TabHost and New Activities

2008-11-23 Thread g1bb
Eureka! I got this to work by taking a look at this sample project: http://www.mail-archive.com/android-developers@googlegroups.com/msg06956.html Set my class that extends TabActivity as the main layout. Thanks again Mark for your help. On Nov 23, 12:45 pm, g1bb [EMAIL PROTECTED] wrote: Hi

[android-developers] Tab Appearance

2008-11-23 Thread g1bb
Hello, Is there a way to change tabs from the default, gigantic size, along with aligning the indicator at the top? Here's what I'm currently using: XML: TabHost xmlns:android=http://schemas.android.com/apk/res/android; android:id=@android:id/tabhost android:layout_width=fill_parent

[android-developers] Re: Tab Appearance

2008-11-23 Thread g1bb
(as opposed to a stylus.) On Sun, Nov 23, 2008 at 7:20 PM, g1bb [EMAIL PROTECTED] wrote: Hello, Is there a way to change tabs from the default, gigantic size, along with aligning the indicator at the top? Here's what I'm currently using: XML: TabHost xmlns:android=http

[android-developers] Re: Tab Appearance

2008-11-24 Thread g1bb
and cause inconvenience to users who are going to use fingers for tapping. Even the iPhone has large widgets for easy touch operation. - Sunit Katkarhttp://sunitkatkar.blogspot.com/- Android OS Tutorials On Sun, Nov 23, 2008 at 7:36 PM, g1bb [EMAIL PROTECTED] wrote: Hmmm... I've seen apps

[android-developers] Person using Sprint Hero can't see application?

2009-11-14 Thread g1bb
Hello, I have someone e-mailing me that they can't see my application in the Market. Is there something specific that I need to put in my manifest? They're using a Sprint Hero. Here's my manifest: ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android;

[android-developers] Re: Person using Sprint Hero can't see application?

2009-11-17 Thread g1bb
is available. So minSdk should be 3 ( or you'll run into the same problem with CLIQ users ) target SDK should be 4 On Nov 14, 9:53 am, g1bb corymgibb...@gmail.com wrote: Hello, I have someone e-mailing me that they can't see my application in the Market. Is there something specific that I

[android-developers] Re: Accidentally made my paid app free

2010-07-01 Thread g1bb
Thanks everyone for the feedback. For the record, I had the app published since the Market's inception (~1.5 years?) with 5000+ downloads, a multitude of ratings, etc. Denis, do you have any ideas on how to fight it? I'm not blaming anyone but myself on this one, but would love to have my

[android-developers] Accidentally made my paid app free

2010-06-25 Thread g1bb
So I made my paid app free, not realizing that I wouldn't be able to change it back to paid. I immediately unpublished it, so I shouldn't have any free users out there. Has anyone had any luck in a situation like this with getting their app published again with ratings/downloads in place? I am

[android-developers] Re: Accidentally made my paid app free

2010-06-25 Thread g1bb
I don't assume that would keep my downloads and ratings intact, would it? Thanks again. On Jun 25, 8:21 am, Mohan Krishna mohankrishnayarragu...@gmail.com wrote: no problem.. No need to change the app name just change the package name of your app... that will work.. -- You received this

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread g1bb
Got it too... hope its legit! On Mar 2, 4:53 pm, Larry lar...@gmail.com wrote: Dear all, I just received an email about Device Seeding Program for Top Android Market Developers: Subject: Device Seeding Program for Top Android Market Developers From: android-market-seed...@google.com Due

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread g1bb
What could they possibly even do with my checkout order #? On Mar 2, 5:15 pm, Photics m...@photics.com wrote: Heh... it seems suspicious to me. I didn't even click the link. Although, if this is a fishing attempt, it starts out as a very good one. -- You received this message because you

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread g1bb
of sending batch mail, that makes it genuine to me! http://www.google.com/support/forum/p/AdSense/thread?tid=127d121c2bc9... http://www.google.nu/support/forum/p/AdWords/thread?tid=6bea75fc383d2... On Mar 3, 12:17 am, g1bb corymgibb...@gmail.com wrote: What could they possibly even do with my

[android-developers] 1.5 SDK crashing on in onReceive for BroadcastReceiver

2010-03-04 Thread g1bb
Hello, I've come across a strange problem reported by an HTC Droid Eris user, and all testing on the other SDK's shows it to be fine. In a BroadcastReceiver I have the following: public class SMSReceiver extends BroadcastReceiver { @Override public void onReceive(Context

[android-developers] Re: 1.5 SDK crashing on in onReceive for BroadcastReceiver

2010-03-05 Thread g1bb
... this is my first encounter with the infamous fragmentation issues I've heard so much about. On Mar 4, 11:22 pm, Bob Kerns r...@acm.org wrote: Check the Javadoc. SmsMessage was introduced in API level 4 (1.6). It doesn't exist in 1.5 (API level 3). On Mar 4, 8:39 pm, g1bb corymgibb...@gmail.com

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-23 Thread g1bb
I think that the crash reporting SDK has been discussed previously in this thread. I remember Flurry being mentioned, as well as a few others. On Mar 23, 7:54 am, David Horn pga...@gmail.com wrote: I've always been surprised that when a Market app is uninstalled, the user isn't shown a screen

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-25 Thread g1bb
Anyone in or around Colorado receive anything yet? FedEx had no information for me. On Mar 25, 8:10 am, mscwd01 mscw...@gmail.com wrote: I'm in the UK too and still waiting. Are you sure FedEx will be used in the UK? It could be Royal Mail, Parcel Force, DPD etc... On Mar 25, 2:06 pm, David

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-30 Thread g1bb
Can anyone tell me the weight of their package? FedEx said my package is 1.22 lbs, and I'm trying to figure out if it's a Droid or N1. Thanks On Mar 30, 4:14 pm, Andrei gml...@gmail.com wrote: got Droid in FL today Thank you Google On Mar 30, 5:47 pm, Breezy mbre...@gmail.com wrote: