[android-developers] Re: Localization: no compression... huge APK...

2010-11-28 Thread Pent
proportion of cases the key takes up more space than the content (think things like button labels etc). On the other hand, it's true, if you have 10 translations then the size of the key quickly becomes relatively unimportant. Pent -- You received this message because you are subscribed to the Google

[android-developers] Localization: no compression... huge APK...

2010-11-25 Thread Pent
? Put them in raw/ and write my own string-caching ? If I'm going that way may as well make them downloadable too... sees a week disappear suddenly Any other suggestions ? Thanks, Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: LVL - Yay or Nay?

2010-11-22 Thread Pent
Pent - have you noticed if your sales have increased since adding LVL? I know it's different on a case-by-case basis, but I always like hearing specific cases. Sorry, can't say. I put it in very shortly after release. Pent -- You received this message because you are subscribed

[android-developers] Re: Can't Upgrade Apps Since Console Maintenance ?

2010-11-21 Thread Pent
). I used firefox, 3.6.12. Pent -- 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: LVL - Yay or Nay?

2010-11-20 Thread Pent
weak policy. Set it up to only need one 'valid' response. Shouldn't take more than a few hours. On the other hand, to minimize complaints you might want to do the validation in the background, that takes a lot longer to set up. Pent -- You received this message because you are subscribed

[android-developers] Can't Upgrade Apps Since Console Maintenance ?

2010-11-20 Thread Pent
I understand the maintenance window is long past, but the Upload Upgrade linky button just disappears when I click it for all my apps. I can upload assets without problem e.g. the new 512x512 icon. Anyone else ? Pent -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Can't Upgrade Apps Since Console Maintenance ?

2010-11-20 Thread Pent
Nevermind. I guess that button isn't supposed to be there anymore with the new Draft upload. Pent -- 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: Retrieve language settings

2010-11-19 Thread Pent
If you mean the system language, here's the code from the localization help text: context.getResources().getConfiguration().locale.getDisplayName() Pent On Nov 19, 11:45 am, pedr0 pulsarpie...@gmail.com wrote: Hi at all, for my application I need to know the application setting language

[android-developers] Re: Layout help - limiting dialog size

2010-11-15 Thread Pent
Here's a dialog I have with a webview top and a button row bottom. In general I've found dialogs to be a total pain to layout. Pent LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent android:layout_height=fill_parent

[android-developers] Re: Layout help - limiting dialog size

2010-11-15 Thread Pent
. Once it works I daren't change *anything* :-) Pent -- 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

[android-developers] Re: multiple notifications

2010-11-12 Thread Pent
I would guess it's because you're using the same notify ID for both. Pent -- 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] Re: multiple notifications

2010-11-12 Thread Pent
( Uri.parse( String.valueOf( NOTIFICATION_ID ) ) ); Or use the filename. Pent the code which used for passing the info is below Intent notificationIntent = new Intent(this,DownloadDetails.class); notificationIntent.putExtra(filename, dmanager.getFilename()); notificationIntent.putExtra(size

[android-developers] Re: Android 2.2 - Portable Hot Spot - WifiManager class

2010-11-11 Thread Pent
when there are competing apps available that have done it. If the developers of Android don't want people using particular functions in a stock ROM they need to put a permission on them. If it's just 'hidden' the profit motive means someone will use it and everyone else has to follow. Pent -- You

[android-developers] Re: How to make a trial version which starts a limited amount of times?

2010-11-08 Thread Pent
of not-wiped storage wouldn't be too much to ask. Pent -- 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: Changelog in Market!

2010-11-04 Thread Pent
looking for something in a certain category and hiding the 325 apps Very good :-) Pent -- 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

[android-developers] Re: Changelog in Market!

2010-11-03 Thread Pent
Thanks for the tip, very good news. But what is it with 325 ? I'm sure that's not a power of 2 is it ? Thanks Big G. Pent -- 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

[android-developers] Re: Can we catch android.intent.action.ACTION_UMS_CONNECTED event

2010-11-03 Thread Pent
users have mentioned it doesn't work on some configurations. If you're using a manifest-declared receiver, maybe try creating one at runtime instead (that's what my app does). Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Checksum Java function in Android

2010-11-01 Thread Pent
A while ago I tried to work out how to checksum a function at runtime. As I remember, I failed due to some missing functionality of the class loader from vanilla java. Has anyone managed to do this ? Thanks, Pent p.s. it's intended as a new tool in the entertaining anti-crack game (please

[android-developers] Re: Adventures with LVL

2010-11-01 Thread Pent
(this is because I am not entirely sure what would happen if the user copied to SD card and then got a refund). Ah yes. I don't do any check at all till 26 hours has passed to avoid the refund problem. Pent -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Adventures with LVL

2010-11-01 Thread Pent
that section but it seems in practice it's 24. Pent -- 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: Adventures with LVL

2010-10-31 Thread Pent
needs one positive response (per install). It validates in the background so most people don't even notice it. I also have a backup licence-code system they can use if all else fails (I needed it for paypal sales). Pent -- You received this message because you are subscribed to the Google Groups

[android-developers] 2.2.1 / N1 / USB Dropping

2010-10-30 Thread Pent
else ? Pent -- 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: 2.2.1 / N1 / USB Dropping

2010-10-30 Thread Pent
p.s. install of apps via adb still works fine without the icons. Pent -- 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] Re: List of all Android Phones: Found !

2010-10-29 Thread Pent
I just found this:http://www.google.com/phone/#manufacturer=allcategory=allcarrier=al... Good find, but from a developer point of view the missing model numbers are a deal breaker since I can't differentiate between them in code otherwise. Pent -- You received this message because you

[android-developers] Re: When is the 3.0 SDK Coming?

2010-10-29 Thread Pent
Anyone have idea when the 3.0 SDK is coming out? Sure, November 7th. Pent -- 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] Re: charging taxes

2010-10-29 Thread Pent
whichever country you are selling to. I think the VAT limit is 70k at the moment, so unless you hit the big time you don't need to worry. You need to register as some kind of business (probably sole trader) to pay HMRC tax on your income from the sales though within 3 months of starting. Pent

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-10-22 Thread Pent
I asked market help about this about a week ago and they say they've now made some changes which 'may have resolved the problem'. Fingers crossed. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-10-22 Thread Pent
of the lost ground after the fix). Pent -- 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: App comment spam

2010-10-22 Thread Pent
by these people. It's really getting annoying. Have you just got back from Siberia ? Pent -- 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] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Pent
Welcome to the Android Market Developer Tools. You havn't been feeling very positive lately have you :-) Pent -- 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

[android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Pent
good improvements (errors to the console, improved app protection, expanded market countries) giving some hope that one day we'll be in good shape. Maybe you're too involved on a daily basis so that the pace of change seems glacial. Pent -- You received this message because you are subscribed

[android-developers] Re: When is android market opening to India??

2010-10-08 Thread Pent
India got paid apps on the 6th and I have since had orders from customers in India. Ditto, though not many. Pent -- 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

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-07 Thread Pent
Had a Danish invasion couple of days ago, which was more pleasant than being invaded by scandanavians usually is. There are still quite a lot of those coming in. Only dribs and drabs of others (e.g. India, Russia) which started yesterday. Pent -- You received this message because you

[android-developers] uses-feature (again)

2010-10-07 Thread Pent
your application requests the CAMERA permission, but will degrade gracefully... (emphasis mine) After reading the doc 3 times, it's unclear to me whether uses-feature should/must be included for information even if it's not required by the app. Pent -- You received this message because you

[android-developers] Re: Best way to prevent multiple clicks - multiple activity starts??

2010-10-01 Thread Pent
as startActivity is called. Pent On Oct 1, 6:53 pm, DanH danhi...@ieee.org wrote: If I have a button that starts an activity, and the activity sometimes takes a second or two to throw up its own view, how can I most simply and reliably protect against the button being clicked multiple times and kicking off

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

2010-09-29 Thread Pent
Unfortunately the exception could only happen in Home when it ultimately tries to persist itself, which is long after the app is involved, so any exception would result in home crashing. An error message would be fine. This one just got me too. Pent -- You received this message because you

[android-developers] requestLocationUpdates / non-UI-thread / getMainLooper()

2010-09-29 Thread Pent
weird unexplicable errors in other places due to the looper voodoo ? Thanks, Pent -- 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

[android-developers] Re: What's the status of installing a non-market apps?

2010-09-27 Thread Pent
Here's my download page with instructions for users: http://tasker.dinglisch.net/download.html Covers most of it. Pent -- 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

[android-developers] Re: How can my app check if a wired headset is connected?

2010-09-27 Thread Pent
It's sticky, so: Intent headsetIntent = registerReceiver( null, new IntentFilter( Intent.ACTION_HEADSET_PLUG ), null, null ); Pent On Sep 27, 7:14 pm, E. eld...@gmail.com

[android-developers] Re: Dropping support for 1.5, separate build for those users on marketplace?

2010-09-24 Thread Pent
: minsdk 3, maxsdk 3 Other: minsdk 4 Pent -- 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: Java Guru Query: override a method taking a reflected class argument

2010-09-23 Thread Pent
classes in your APK as long as they are not referenced. Thanks very much, also for the elaboration of the factory. In the end I also needed a PhoneStateListenerCommon class with a Handler to pass out when events occur. Pent -- You received this message because you are subscribed to the Google

[android-developers] Java Guru Query: override a method taking a reflected class argument

2010-09-22 Thread Pent
, the signature changes of course. TIA, Pent -- 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: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-21 Thread Pent
for now. Gone here too, maybe it was my magnificent post to Market Help yesterday :-) Pent -- 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

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-19 Thread Pent
at the top of all the paid app comments. I mean really. Pent -- 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

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-09-18 Thread Pent
progress. Thanks for the update. Hope they're not just going to rely on future installs to bring the figure up again as it sounds Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-09-15 Thread Pent
that applications are not actually being uninstalled. We hope to have a resolution soon. This fits, actually. I had been holding steady at around 50%. Released my first update for a month yesterday evening and now I'm down to 45%. Pent -- You received this message because you are subscribed

[android-developers] Re: notification..!

2010-09-15 Thread Pent
I want to store information in the registry What registry? I think he wants to get married ? Pent p.s. Rubin, there is no central registry in Android -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Storing Permanent Data

2010-09-14 Thread Pent
OP, if you put up a feature request for minimally a single long of permanent storage I'll star it :-) http://code.google.com/p/android/issues/list Pent On Sep 14, 6:21 pm, Dianne Hackborn hack...@android.com wrote: Sorry, you can't. On Tue, Sep 14, 2010 at 10:14 AM, Great imad.qure

[android-developers] Re: GOOGLE, WHAT IS GOING ON with the Active Install %? Bug in install to SDCARD is my guess!

2010-09-14 Thread Pent
Thanks for reporting back. Which explains why it happened after updating. I guess we just sit tight now and wait for a fix. If that turns out to be it, I'm kindof horrified how many people are running old versions of my app! Pent -- You received this message because you are subscribed

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-09-13 Thread Pent
Meanwhile my paid app % is approaching that of my free version, which is simply ridiculous, and I've dropped 3 spots in my category. How are you guys doing? Better, same, worse? 80%-50%. Virtually all of my sales were last 6 weeks. App continues to get 4.5 stars. Pent -- You received

[android-developers] Re: ContentObserver not working

2010-09-13 Thread Pent
without problem. Then switch to the newer ContactsContract API. Pent -- 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

[android-developers] Re: Choosing background for Live Wallpaper.

2010-09-10 Thread Pent
Intents.  I then get a list of live wallpaper providers also using Intents and remove those from my first list.   Which intents did you use for that ? Thanks, Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Working Around Samsung Double-SD Problem

2010-09-10 Thread Pent
that look right ? I don't have any talkative users for testing yet. Thanks, Pent -- 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] Re: Working Around Samsung Double-SD Problem

2010-09-10 Thread Pent
for the info. Pent -- 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 options

[android-developers] Re: How to handle Home Key in our Activity

2010-09-10 Thread Pent
How many times will you be asking that question again and again? Speaking of which: there are about 30 questions that come up again and again*, a comprehensive FAQ would really unclutter this board. If there is one already it should be highlighted. Pent * possibly including 'where's the FAQ

[android-developers] Re: ClassNotFoundException crash reports from Market

2010-09-07 Thread Pent
but crashes when you try to use map classes apparently. Pent -- 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

[android-developers] Re: How to check if a user defined service is already running

2010-09-07 Thread Pent
that Android wasn't really designed for this type of thing'. Pent p.s. I can confirm the call is not reliable, I ended up having to use a static flag. On Sep 7, 4:51 am, sunny menon1...@gmail.com wrote: Dear Folks, I have a service that is running within the context of my application. It gets

[android-developers] Re: first time run / one time pop up

2010-09-05 Thread Pent
Store the version code in SharedPreferences. If it doesn't match the one that the package manager reports you know it's a new version. Pent On Sep 5, 9:38 am, Chris christopery...@gmail.com wrote: How can I tell if this is the first time that this version of my app has been run? So I can

[android-developers] Re: How to start an activity from the Service

2010-09-03 Thread Pent
Use an intent with a set component. You need flag LAUNCHED_FROM_BACKGROUND or whatever it is and NEW_TASK if I remember right. Look in the log and see what the problem is. Pent On Sep 3, 8:31 am, Prateek finch...@gmail.com wrote: i have a launcher activity which gets activated everytime i

[android-developers] No Cell Location Updates While Display Is Off

2010-08-31 Thread Pent
(for over 40 seconds as a test). I've seen a few posts elsewhere from a while ago mentioning the same thing. Can a dev confirm this is intended ? If so, I'll feature request it (and it should be in the docs), if not, I'll bug report it :-) Or has anyone else got a workaround ? Thanks, Pent

[android-developers] Re: Ratings breakdown in Dev Console

2010-08-31 Thread Pent
Here here! Pent Just noticed the new ratings breakdown feature in the Comments section of the Dev Console. Really interesting to see the breakdown. Not sure how useful it is, but a welcome addition nonetheless! -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: No Cell Location Updates While Display Is Off

2010-08-31 Thread Pent
Update: holding a screen dim wakelock for a short while means I get updates, but it's not exactly ideal. Pent -- 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

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

2010-08-30 Thread Pent
of the functionality requires that particular permission. And it's less dangerous because if there's a bug in my program it has vastly less potential for damage. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Facing licensing issue in already published paid app

2010-08-27 Thread Pent
from 1 to 2 in manifest file, then licensing service not allow to use the app. The server version on the market server must match the one in the manifest. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

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

2010-08-25 Thread Pent
because I'm updating so often at the moment. Pent -- 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: User request refund 20 days after purchase

2010-08-25 Thread Pent
barking for refunds when the app is working fine?  It's a scary precedent to set, but I would still refund the one off request. I always cancel the order after refunding as well just in case that might prompt Market or the LVL component to notice :-) Pent -- You received this message because you

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

2010-08-25 Thread Pent
function (b) which also uses (s). When the pref controlling (a) is disabled, everything works fine until the next statics reset when (b) starts crashing. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: How to check the Foreground Process from a Service

2010-08-22 Thread Pent
to the launcher it is sometimes not updated. Pent -- 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

[android-developers] Re: Android and Proguard

2010-08-22 Thread Pent
there, and you want to keep your code secret. Yeah, do it for the small, speedy code too :-) Pent -- 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: How to check the Foreground Process from a Service

2010-08-22 Thread Pent
Note that these methods are very much not intended for doing anything except presenting UI to the user about what is running.  Do not rely on them to drive logic in your app.  You will ultimately be unhappy. That paragraph should go in the docs IMO, save people finding out the hard way. Pent

[android-developers] Re: Disappearing Alarms

2010-08-20 Thread Pent
can increase that 10 minutes without the problem coming up again. Pent -- 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] Re: KEYCODE_HOME

2010-08-19 Thread Pent
You could *detect* the app exit via the home key (combination of onuserleavehint and onpause) and return to it from the launcher afterwards. Not pretty though. And I'm now going to be verbally (textually ?) whipped for speaking such heresy again. Pent -- You received this message because you

[android-developers] Re: Disappearing Alarms

2010-08-17 Thread Pent
- then suddenly there's NO activity in the logs for many hours (highly unusual) - the first activity reported after this silence is the display being turned on manually I recognize that description but I'd put it down to just being in deep sleep during the night. Pent -- You received

[android-developers] Re: Disappearing Alarms

2010-08-16 Thread Pent
You sure they're not killing your service with a task killer? I am seeing the service handling other incoming intents before and after the alarm time. If it was recreated that would be logged. Pent -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Disappearing Alarms

2010-08-16 Thread Pent
is relevant to your problem, I have a number of suggestions what else you can do. Thanks for the info, will make inquiries. Pent -- 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

[android-developers] Re: How do I convert float to 2 decimal places?

2010-08-16 Thread Pent
I use, for better or worse, public final static double roundDouble( double d, int places ) { BigDecimal bd = new BigDecimal( Double.toString(d) ); bd = bd.setScale( places, BigDecimal.ROUND_HALF_UP); return bd.doubleValue(); } Pent -- You received this message

[android-developers] Re: App download too less

2010-08-15 Thread Pent
you get some kind of promotion, or it's so good that an enthusiastic user starts spreading the word in forums etc you probably won't get more than some hundreds of downloads (like the memory game I threw up a few months ago). Pent -- You received this message because you are subscribed

[android-developers] Disappearing Alarms

2010-08-15 Thread Pent
, PendingIntent.FLAG_CANCEL_CURRENT ); alarmLastTime = some time in the future... alarmManager.set( AlarmManager.RTC_WAKEUP, alarmLastTime, alarmPendingIntent ); I'm checking for alarmLastTime being in the past. Anyone else ? Any ideas ? Pent -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Disappearing Alarms

2010-08-15 Thread Pent
Yeah I was thinking the thing was being killed at first, but I have long-term logs going to SD and I would've seen it happen. Pent On Aug 15, 5:36 pm, JP joachim.pfeif...@gmail.com wrote: Look for the following log entry: DEBUG/Activity(xx): Process yourappservice (pid:xx) has died In my

[android-developers] Test for Camera Button hardware ?

2010-08-13 Thread Pent
Any ideas for testing if there's a camera hardware button present or not ? I was hoping it would be in Configuration, but no luck. It's not enough to listen for the intent. Thanks, Pent -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: Saving SMS to SENT messages

2010-08-13 Thread Pent
Suzann, Assuming the name of the content provider is 'sms': if ( packageManager.resolveContentProvider ( sms, 0 ) != null ) ) { //have provider } Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: With the new Froyo update, my app is being killed instead of running in the background

2010-08-11 Thread Pent
because they have a permanent notification in their status bar. I really don't think that that change was an improvement, especially since the service/battery stats arenow easily available via the Settings app. Pent -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: With the new Froyo update, my app is being killed instead of running in the background

2010-08-11 Thread Pent
basis ? Pent -- 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 options

[android-developers] Re: With the new Froyo update, my app is being killed instead of running in the background

2010-08-11 Thread Pent
of users don't like it and making them able to turn it off would be nice to them. Pent -- 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

[android-developers] Re: With the new Froyo update, my app is being killed instead of running in the background

2010-08-11 Thread Pent
implementation's objectives. Great, we can agree. Pent -- 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: LVL Feedback

2010-08-11 Thread Pent
my hope. Yes, there's an 'other apps don't need no stoopid validation, why does yours' mentality prevaling. I used to get quite a few 1* for validation, it's slacking off now that I can do it all in the background without a code. Pent -- You received this message because you are subscribed

[android-developers] Re: Build with 2.2 SDK ok to deploy on 1.5+

2010-08-10 Thread Pent
this, but it works fine, in fact you have to for some cases in order to e.g. use recent manifest attributes. It's a must to test on the 1.5 emulator though, in case you accidentally used an API not on the earlier ROM. Pent -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: LVL Feedback

2010-08-09 Thread Pent
to be even less I can do to help them. And that's a sure recipe for 1* comments, quickly followed by declining sales. As I say, I havn't had any problem from LVL yet (fingers crossed some more). Pent -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: LVL Feedback

2010-08-09 Thread Pent
Do you use default policy implementation provided with LVL (ServerManagedPolicy)? With 10k user base I received about 10 can't validate reports, and rollback LVL. I use StrictPolicy. If I get a single ALLOW I never check again. Pent -- You received this message because you are subscribed

[android-developers] Re: getting exception when inserting events in android calendar.

2010-08-09 Thread Pent
I'd like to Triple Star both TreKing's comments :) Pent -- 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

[android-developers] LVL Feedback

2010-08-08 Thread Pent
to be individually hacked which is a huge step forward IMO. Pent p.s. bit more advance notice next time would be great... -- 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

[android-developers] Re: LVL and Settings.Secure.ANDROID_ID - how secure?

2010-08-08 Thread Pent
' concerned me too much to use it. Pent -- 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] Quick Multi-Widget Taps

2010-08-06 Thread Pent
it to disable buttons (plus clear it in onActivityResult), but I'm not sure I've managed to cover all the possibilities over all the activities of my app. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Parent activity runs onCreate before onActivityResult is called (sometimes)!

2010-08-05 Thread Pent
Just to add: - the users it happens for it always happens - the other users it never happens - onResume is not called in A after onCreate Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: Parent activity runs onCreate before onActivityResult is called (sometimes)!

2010-08-05 Thread Pent
Hey Bob, thanks for taking the time. I was just coming to report that I noticed A being destroyed after calling B, didn't expect that possibility. Still don't know why it consistently picks on these particular users but I'm happy anyway :) Pent On Aug 5, 8:50 am, Bob Kerns r...@acm.org wrote

[android-developers] Re: Parent activity runs onCreate before onActivityResult is called (sometimes)!

2010-08-05 Thread Pent
Can't remember the phones, just that they were all different. Anyway, another good learning day in Android OS land. Bug conquered, progress made, knowledge gained, Pent On Aug 5, 3:58 pm, TreKing treking...@gmail.com wrote: On Thu, Aug 5, 2010 at 4:18 AM, Pent tas...@dinglisch.net wrote

[android-developers] Parent activity runs onCreate before onActivityResult is called (sometimes)!

2010-08-04 Thread Pent
android:label=B / Anyone recognize it ? Pent -- 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: LVL handler on a dead thread

2010-08-03 Thread Pent
Thanks for listening, thought this was going to be another blank wall experience. Pent On Aug 2, 9:02 pm, Trevor Johns tjo...@google.com wrote: It was the weekend, I've got to step away from the computer sometime. ;) It is indeed a harmless error. We shut down the handler thread when

[android-developers] Re: LVL handler on a dead thread

2010-08-02 Thread Pent
Hate to do it but... bump since it was the weekend. Any support from Google on a just-released library ? Pent -- 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

[android-developers] Re: Android Market Licensing: Now Available!

2010-07-31 Thread Pent
the googlers should change that line. Havn't finished testing yet but this has at least fixed the 'can't bind' problem. Pent -- 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

<    1   2   3   4   >