Re: [android-developers] Is there anyway to turn USB debuggin on/off

2010-08-27 Thread Chris Stewart
Are you trying to do this from code, or through the UI? There's the option for it under Settings - Applications - Development, but it sounds like you're asking about doing it through code and that I have no idea about. -- Chris Stewart http://chriswstewart.com Fantasy

[android-developers] Re: Game math/logic calulating movement

2010-08-27 Thread Robert Green
Direction will be in the range -180 to 180 so don't use abs! Always use sin/cos for y/x respectively when in y+ down 2D coordinate systems, otherwise x/y respectively. Here is kind of what you want // tickDelta should be something like .016f to .033f - definitely should total 1.0f per second :)

[android-developers] Re: Is there anyway to turn USB debuggin on/off

2010-08-27 Thread Arjun
Yes Chris, I want do it thru code. I need to completly disable usb and simply act as Power connector. On Aug 27, 10:57 am, Chris Stewart cstewart...@gmail.com wrote: Are you trying to do this from code, or through the UI?  There's the option for it under Settings - Applications - Development,

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 12:19 PM, Yahel kaye...@gmail.com wrote: He removed the feature list and compared his product with top-of-the- line desktop application that do the same thing. And of course he used the try it risk-free 24 hours refund argument :) I can tell you it would really work

Re: [android-developers] Re: Licensing server, app cracked.

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 12:32 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: no news on the imminent guide where is this guide? On Tue, Aug 24, 2010 at 7:01 PM, Trevor Johns trevorjo...@google.com wrote: It's coming. We have two articles in the queue that will cover this topic. As

[android-developers] How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
Hello, I am trying to reset my program just like when you rotate the phone. Any way to do that in code? 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@googlegroups.com To

Re: [android-developers] Android Market, google checkout minimal sum to be collected before payment.

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 12:34 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: is there a way to set google checkout to pay us only after our balance surpassed a certain amount? I don't think so, at least I've not found a way from looking around. Checkout was really tacked on to Android

Re: [android-developers] How do you force a reset just like rotation does?

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 1:32 PM, ArcDroid jacobrjohn...@gmail.com wrote: Any way to do that in code? private void reset() { startActivity(/*args for this activity*/); finish(); } - TreKing

[android-developers] Re: upload image to php server problem

2010-08-27 Thread Yahel
You need to tell us where the error is raised if any. In your php you might want to try to use the realpath function to get the true path to your upload folder : ?php $target_path = realpath(uploads/); ... Yahel On 27 août, 17:42, CMF manf...@gmail.com wrote: Hi all, i have read through the

Re: [android-developers] Re: Best way to store restaurant data

2010-08-27 Thread Dominic DiTomaso
Thanks Frank. Looks like I have a lot of reading to do. On Wed, Aug 25, 2010 at 11:45 AM, Frank Weiss fewe...@gmail.com wrote: An app I'm developing uses URLConnection, others like to use HttpClient. I suggest you find some sample code that does something similar and study how it's done.

[android-developers] Re: IllegalStateException with ExpandableListActivity and SimpleCursorTreeAdapter

2010-08-27 Thread OldSkoolMark
I've resolved the issue. Not sure if this is a bug, feature, or is merely an undocumented feature. It appears that the child projection you supply to your ExpandableListAdapter's constructor needs to include the _ID field of the child table. -- You received this message because you are

[android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Zsolt Vasvari
Answers below: * Put some context around doubled.  From 1 to 2, 100 to 200, 1,000 to 2,000? From about 7-8 to about 15-16. The app is $7. So it went from probably not worth doing it to a nice chunk of pocket change. * How many cancels are in these numbers?  I've got to believe that with a

[android-developers] Re: String being truncated when its long

2010-08-27 Thread Brion Emde
I'm pretty sure that if there is a limit, it is much bigger than what people are saying here. I wrote a little Twitter example on Android and just doing the home_timeline query can return up to 200 tweets, each up to 140 characters, plus overhead. That's 10s of kilobytes per GET request. See if

[android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
thanks for the quick reply, but what args are you referring toosorry for the novice question, but this is new turf for me private void reset() { startActivity(Intent.); finish(); } On Aug 27, 11:35 am, TreKing treking...@gmail.com wrote: On Fri, Aug 27, 2010 at 1:32

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Chris Stewart
Very cool, I'm glad to see it's working for you. Did you include the terms Microsoft Money or Quicken in your original description? I could certainly see you getting a lot of downloads driven from people searching those terms. I did notice a few misspellings but didn't know if those were

[android-developers] Re: Error when adding a library project

2010-08-27 Thread Günther
Hi Bret, do you have the latest SDK revisions? As far as I remember I got the same error before updating to the most recent revisions... Cheers, Günther On 27 Aug., 18:02, Bret Foreman bret.fore...@gmail.com wrote: I should also note that removing the library does not make the project build.

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 1:51 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Answers below: Thanks for sharing! * Put some context around doubled. From 1 to 2, 100 to 200, 1,000 to 2,000? From about 7-8 to about 15-16. The app is $7. So it went from probably not worth doing it to a nice

Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 1:53 PM, ArcDroid jacobrjohn...@gmail.com wrote: thanks for the quick reply, but what args are you referring too http://developer.android.com/reference/android/content/Context.html#startActivity(android.content.Intent) And if you don't know how to start your own

[android-developers] Re: String being truncated when its long

2010-08-27 Thread ko5tik
My game has no problem to pull and parse complete highscore list: http://www.pribluda.de/highscore/lines/LinesHighscore/pull?since=0 (ok, usually it is less that that - only updates sine some moment ) I would check with some other tool ( SoapUI us the one ) if server side works properly and

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-27 Thread Dianne Hackborn
Yes what happens during an update is the app is first force stopped (all processes killed, alarms unregistered, etc), then then the new version is installed. It seems promising that clear data would fix the problem; this is most likely then an issue you can deal with in your app rather than

[android-developers] Making sure that ... (not an ellipsis) is not wrapped

2010-08-27 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In some cases I have messages, typically shown in a toast message, where there are three trailing periods. For instance, bla bla bla. Please wait Note that this is _not_ an elipsis, as the string is not truncated. The problem is that sometimes

[android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
I have already searched all those links, but was expecting some basic call that is generic to every program. On Aug 27, 12:13 pm, TreKing treking...@gmail.com wrote: On Fri, Aug 27, 2010 at 1:53 PM, ArcDroid jacobrjohn...@gmail.com wrote: thanks for the quick reply, but what args are you

[android-developers] Re: Read the data in Intent

2010-08-27 Thread Indicator Veritatis
As a newcomer to Android, you absolutely must read http://developer.android.com/guide/topics/fundamentals.html. You must not only read it, but study it thoroughly. Thoroughly enough that you can answer, for example, reading questions such as the following: 1) What are the four application

[android-developers] Re: String being truncated when its long

2010-08-27 Thread Achanta
First of all thanks everyone for replying. I just discovered that the problem is not with my code but with the number of lines that the logcat is displaying. The problem was that I got a problem in my json reply format and my parsing code spits an error. So I started trying to debug it by

Re: [android-developers] Making sure that ... (not an ellipsis) is not wrapped

2010-08-27 Thread Brad Gies
Have you tried putting a span around it... like : bla bla spanbla.../span On 27/08/2010 12:29 PM, Fabrizio Giudici wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In some cases I have messages, typically shown in a toast message, where there are three trailing periods. For instance, bla

[android-developers] Re: Problem with reading contacts on Samsung Galaxy Europa

2010-08-27 Thread Albert
Hi Zarah, I have reports of the app launching a blank screen but not crash. I am getting a Samsung Spica this week but you have already stated that it works there so that won't be of any use. For my app is wan't so critical so I just instruct Galaxy S users to insert those details manually. The

[android-developers] Re: String being truncated when its long

2010-08-27 Thread DanH
Great that it turned out to be so easy to debug! This is the sort of secondary problem that can drive one crazy for days sometimes. On Aug 27, 2:32 pm, Achanta krishna.acha...@gmail.com wrote: First of all thanks everyone for replying. I just discovered that the problem is not with my code

[android-developers] Re: Read the data in Intent

2010-08-27 Thread Indicator Veritatis
I wonder if he meant 'Service' instead of 'Server'. Then the question would at least be cogently phrased. But if he really meant 'Server', then he probably does not realize he has to set up his own code to access the server over the Net, isolated from the main UI thread. If he wants to do that as

Re: [android-developers] Re: String being truncated when its long

2010-08-27 Thread Frank Weiss
Might I suggest you try debugging in Eclipse instead of with logcat. You can breakpoint and step through the code and inspect variables. It gives you much better insight into what's happening in your code than logcat or toast. -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Frank Weiss
Zsolt, I work at a digital advertising agency and have been sharing your experience with my colleagues. They found it very intereresting and of course, obvious. When I remarked that many Android developers are, well, developers, they joked that maybe our agency should start helping mobile app

[android-developers] Debugging Droid X-specific issues

2010-08-27 Thread Paul Tongyoo
Hi Developers-- So I've run into a Droid X-specific issue but am not able to reproduce with my emulator AVD's. Is there a Droid X-specific AVD that I should be using? Thanks in advance! PT -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-27 Thread TreKing
Thanks for the continued help. On Fri, Aug 27, 2010 at 2:22 PM, Dianne Hackborn hack...@android.comwrote: The first thing I would look for is any code writing data that could cause problems if it was killed in the middle of executing. That makes sense, but that's also why I'm confused. The

[android-developers] AccountManager auth token and user interaction

2010-08-27 Thread Federico Paolinelli
Hi all, I am trying some interaction with my phone and an appengine server, and I have the following question: there may be a case in which the account manager need the user to confirm that he wants to authorize the account. Will it be just once for the installation of the application? Or it can

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-27 Thread Tom Gibara
I wasn't able to fully follow your description, but this bit caught me eye: Userselection is the value chosen by the user from a list pre-populated by the Keys in the Manager class to begin with. So if the user was able to make the selection, the key was there at the start of the Activity, and

[android-developers] T-Mobile G1 won't appear in 'adb devices' list

2010-08-27 Thread Mike
I'm trying to connect to connect to my T-Mobile G1 to test a simple android app I an creating. I cannot get it to show up in the list of connected android devices. Here are the details: - 32-bit Windows XP - I have enabled USB Debugging on my device - I am not prompted with the New Hardware

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Brad Gies
Hah.. yes.. I guess non developers have as many jokes about developers as developers have about them :). But it should be obvious to any developer: How many developers have experienced the other person's eyes glazing over and their mind shutting down effect when they are excitedly telling

[android-developers] permission denied when trying to pull apk from phone to computer

2010-08-27 Thread Anil
I want to copy the youtube.apk from my phone to my computer. It is to test out an idea. My phone is not a rooted phone (HTC Slide Android 2.1). adb shell cd /system/app adb pull Youtube.apk c:\ I get adb: permission denied Any help appreciated. - Anil -- You received this message because you

[android-developers] Best background practices

2010-08-27 Thread Federico Paolinelli
Hi all, my application needs to perform some activities in background (like interacting with the network and check the location and some other stuff), having or not the main activity visible. Which is the best way to achieve this? Should I write a service for each kind of job? Or just one service

[android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Zsolt Vasvari
Yeah, I don't know if I'd be willing to claim this entire theory is validated based on 8 more sales in one week for one app  ... 8 a day, for a week. But it the perecntage that matters. And today it's up to 19 so far. (21 - 2 cancelations) I hope you don't mind me linking, the old one is

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 3:53 PM, Tom Gibara tomgib...@gmail.com wrote: Have the keys changed between releases of the application? Is the selected key persisted in any way? Nope, they're hard-coded and were introduced in the last update. So where I have Key is a string literal I use to ID the

[android-developers] Re: Best background practices

2010-08-27 Thread Maps.Huge.Info (Maps API Guru)
I think the consensus is that AsyncTask is the way to go if what you're trying to do affects the UI thread eventually. Using a service to compute location for instance would be over complicated. -John Coryat -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Optimizing list view scroll

2010-08-27 Thread ls02
I did some profiling and it turned out significant time is spent on loading images. Each listview item has a distinctive image. i have thousands of items in my listview so I cannot cache them. I tried to create an image on card folder cache of either PNG or JPEG image files of exactly the same

[android-developers] Re: permission denied when trying to pull apk from phone to computer

2010-08-27 Thread Maps.Huge.Info (Maps API Guru)
You have to give it a path. The pull command doesn't know where YouTube.apk is located. Try: adb pull /system/app/YouTube.apk instead. -John Coryat -- 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 way to request permissions from a user as you need them?

2010-08-27 Thread Greg Giacovelli
I think I see where you are coming from to a point however honestly I dislike the global statement. I mean a wall of permissions is going to turn into white noise to users (in which case the permission could be for Brick for all they care leading to spam) or paranoid users (in which case your

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread TreKing
At the risk of getting into another long-winded, miscommunicated debate ... =P On Fri, Aug 27, 2010 at 4:03 PM, Brad Gies rbg...@gmail.com wrote: How many developers have experienced the other person's eyes glazing over and their mind shutting down effect when they are excitedly telling their

[android-developers] Re: MenuItem with Spanned elements in their titles

2010-08-27 Thread Greg Giacovelli
Just to close this off, apparently in MenuItems for context menus you need to use a string for the condensedTitle because the internal EventLog is dumb. On Aug 19, 7:28 pm, Greg Giacovelli miyamo...@gmail.com wrote: Hi I was just trying something and realized this doesn't seem possible due to

Re: [android-developers] Re: Error when adding a library project

2010-08-27 Thread Xavier Ducrohet
That is correct, you need a newer version of aapt. See the compatible platforms: http://developer.android.com/guide/developing/eclipse-adt.html#libraryReqts On Fri, Aug 27, 2010 at 12:00 PM, Günther gru...@googlemail.com wrote: Hi Bret, do you have the latest SDK revisions? As far as I

[android-developers] getContentHeight pixel density

2010-08-27 Thread Tom
i'm trying to use getContentHeight to compute how much scrollable content i have remaining in a WebView. when i run my app on devices w/ different screen dimensions getContentHeight appears to return the same value while the getHeight() on the container of the WebView returns different values

[android-developers] Using Bouncy Castle with an Android app

2010-08-27 Thread fba
Has anyone managed to use Bouncy Castle in one of their apps? I need to be able to do detailed manipulations of x509 certificates (generate CSRs, generate key pairs, convert between different certificate formats, etc.), and BC seems the best way to do that. I have tried putting the bcprov

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Federico Paolinelli
What I really like of this thread is this kind of solidarity (hope it's the right term) that bind you (us) all. All this kind of suggestion feels very genuine, and it's nice. On Sat, Aug 28, 2010 at 12:07 AM, TreKing treking...@gmail.com wrote: At the risk of getting into another long-winded,

[android-developers] Re: T-Mobile G1 won't appear in 'adb devices' list

2010-08-27 Thread fba
I ran in to a similar issue last year. After much searching and messing around I managed to get it working by using bits and pieces of various other people's blogs. I went ahead and blogged about it here : http://geektaco.blogspot.com/2009/10/of-androids-and-usb.html . Basically, it seems that

[android-developers] Clearing the Canvas in a Framelayout

2010-08-27 Thread ArcDroid
Hello, I have a framelayout which works great except I want to have a clear button. So far the best option I can think of is to use the drawcolor but this whipes everything including the buttons I have in the framelayout. Any ideas are appreciated. Thanks -- You received this message because

Re: [android-developers] Re: Paid vs Free, My Early Experience

2010-08-27 Thread Brad Gies
No debate about that... demo's are very effective for some products... and technology products are in that group :). A good demo for an Android app that focused on showing what you can do , and Look how easy it is to do it would be a great marketing tool... if you can figure out how to get

Re: [android-developers] Re: Is there a way to request permissions from a user as you need them?

2010-08-27 Thread Frank Weiss
On the otherhand, I'd probably want to know if an app was ever going to ask for a particular permission. Then again, it might be reasonable if an app, at some point after it's installed, said if you grant me this permission, I can do this additional function or to fulfill your request, I will need

Re: [android-developers] Using Bouncy Castle with an Android app

2010-08-27 Thread Frank Weiss
I suppose you might try asking the folks at BouncyCastle to provide an Andorid/Dalvik/Harmony version or become a committer on that project. (Damnit! I'm starting to see some merit to the Oracle vs Google/Android lawsuit) -- You received this message because you are subscribed to the Google

Re: [android-developers] Using Bouncy Castle with an Android app

2010-08-27 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 8/28/10 00:55 , fba wrote: Or, could I get around this by making sure that I am using the same version that is included in the OS? (Or, in a nutshell, is the ClassCastException likely to be a problem because the parameters defined for the

Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 2:31 PM, ArcDroid jacobrjohn...@gmail.com wrote: I have already searched all those links, but was expecting some basic call that is generic to every program. The call itself is generic, but the arguments have to specify what activity you're talking about and only you

Re: [android-developers] Re: Android libraries

2010-08-27 Thread Xavier Ducrohet
Are you sure you're referencing it through the library system and not in the standard JDT build-path? On Wed, Aug 25, 2010 at 1:54 AM, Günther gru...@googlemail.com wrote: Xavier, sorry to intrude here after a month, but I'm having the problem described above that the class files from the

Re: [android-developers] Re: Is there a way to request permissions from a user as you need them?

2010-08-27 Thread Dianne Hackborn
I think there is enough evidence that asking permission at time of need doesn't generally work -- see the MIDP experience, Windows Vista/7 security, etc. There is a fundamental problem that at the point you ask the permission, the user is wanting to accomplish some task at hand, and all you are

[android-developers] Re: Licensing server, app cracked.

2010-08-27 Thread Lance Nanek
There's lots of information on using ProGuard with Android apps if you just Google those terms. I implemented it once with one of my apps to see if it would help my frame rates, but decided not to ship it. Wasn't much performance improvement in my case and not sure if I want the extra annoyance of

Re: [android-developers] Re: Optimizing list view scroll

2010-08-27 Thread Dianne Hackborn
This is an API demo for dealing with data that is slow to load: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List13.html You'll of course want to do this a little differently, filling in as much of each item as you can when binding, and having a

[android-developers] Re: Sysinfo CPU load in DDMS not working with 2.2 devices?

2010-08-27 Thread Patrick
OK, looking through the ddmuilib/SysinfoPanel source code http://bit.ly/amJRR0 it looks like the code just executes a dumpsys cpuinfo command and then parses the output to build the pie chart. On a 1.6 emulator the output looks like this: # dumpsys cpuinfo dumpsys cpuinfo Currently running

[android-developers] Re: Cannot get LED notifications to work on my Motorola Droid (with Froyo)

2010-08-27 Thread Brian Swartzfager
Never mind: I figured out the issue. Apparently after the 2.1 update, the notification light on the Motorola Droid only blinks when the screen is blank (http://androidforums.com/motorola-droid/76585- help-led-notification-light-stopped-working.html). I never really noticed the change, but I was

Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread Shawn Brown
I have already searched all those links, but was expecting some basic call that is generic to every program. The call itself is generic, but the arguments have to specify what activity you're talking about and only you know that (assuming you're not handling some generic intent). generic?

[android-developers] Bug in Android 2.2 with move to sdcard home screen shortcuts?

2010-08-27 Thread Doug
I've discovered what may be a bug in the app2sd feature of Android 2.2. I haven't been able to find any information about it using the usual searches. My app will create a home screen shortcut in the usual way. Inside its intent that to be launched is a few extras describing the action to take.

[android-developers] ADT causing CDT to build all C projects on Android app launch??

2010-08-27 Thread Robert Green
Hey guys, I doubt there are too many people who run CDT in eclipse for native apps also with ADT installed for Android, but in the off-chance that someone here knows anything about this, my problem is that any time I run any android app, my C builder kicks in for projects totally unrelated. I

[android-developers] Re: Bug in Android 2.2 with move to sdcard home screen shortcuts?

2010-08-27 Thread Doug
I'll follow up with extra info by pointing out that the string array extra also gets wiped when the device is rebooted. Both N1 and Droid. And I'm told by a user that apparently this was a problem in Android 2.1 as well. -- You received this message because you are subscribed to the Google

[android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
i was reading the links you sent and you would think that super.ondestroy(); should also do the trick, but doesn't. Any idea why? On Aug 27, 12:31 pm, ArcDroid jacobrjohn...@gmail.com wrote: I have already searched all those links, but was expecting some basic call that is generic to every

Re: [android-developers] Re: Bug in Android 2.2 with move to sdcard home screen shortcuts?

2010-08-27 Thread Michael MacDonald
On 08/27/10 22:42, Doug wrote: I'll follow up with extra info by pointing out that the string array extra also gets wiped when the device is rebooted. Both N1 and Droid. And I'm told by a user that apparently this was a problem in Android 2.1 as well. I noticed the same problem with

Re: [android-developers] Re: Bug in Android 2.2 with move to sdcard home screen shortcuts?

2010-08-27 Thread Romain Guy
Extras are supported but not arrays. You can use String, int, long, byte, char, boolean, double, float and short. Nothing else will be persisted, nor is there any plan to support arrays. You can probably see an exception in logcat logged when Launcher tries to save your Intent in the database. On

Re: [android-developers] Re: Is there a way to request permissions from a user as you need them?

2010-08-27 Thread Brad Gies
I would argue the opposite :) One of the handiest features of Windows Firewall is that you have the option of Displaying a notification when it blocks a program, and when the dialog shows up, you have the option of granting that program access, and then it never bothers you again. I do

[android-developers] Re: detecting/intercepting incoming calls

2010-08-27 Thread Doug
See TelephonyManager -- 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

Re: [android-developers] Re: Is there a way to request permissions from a user as you need them?

2010-08-27 Thread Dianne Hackborn
Well, we disagree. On Fri, Aug 27, 2010 at 10:27 PM, Brad Gies rbg...@gmail.com wrote: I would argue the opposite :) One of the handiest features of Windows Firewall is that you have the option of Displaying a notification when it blocks a program, and when the dialog shows up, you have

[android-developers] Re: Piracy Breakdown by Country

2010-08-27 Thread gosh
Hi Dave, Thanks for the stats - as disconcerting as they are. As an Australian software developer I was very disappointed to see Australia up top in the percentages on your scale of software pirates, wrt to your app - which I find hard to explain, subjectively or otherwise. I'll make a few

<    1   2