[android-developers] Re: Note on Size of Apps

2009-04-17 Thread Mariano Kamp
Is there any way to be notified as an app when it gets uninstalled, so that cleanup can be done for stuff stored on the SD card? On Wed, Apr 15, 2009 at 8:02 PM, Dianne Hackborn hack...@android.comwrote: Correct. The numbers are intended to tell you how much space the app is using in /data,

[android-developers] Re: Note on Size of Apps

2009-04-16 Thread droozen
Cool. Thanks guys! On Apr 15, 1:02 pm, Dianne Hackborn hack...@android.com wrote: Correct.  The numbers are intended to tell you how much space the app is using in /data, thus how much space you would make available for other things if you removed that data.  The code for the built-in

[android-developers] Re: Note on Size of Apps

2009-04-15 Thread Pd
Have you followed this guide: http://developer.android.com/guide/publishing/preparing.html droozen wrote: So I wrote my own calculator app because I wanted to have some different functionality than the calculator that comes with the phone. Now, I notice the calculator that came with the

[android-developers] Re: Note on Size of Apps

2009-04-15 Thread deepdr...@googlemail.com
As far as I know, internal, inbuilt apps count zero for the app size itself. Just try and clear i.e. all browser data and it shows up as 0 byte! The 4k I think is for some data stored by the calculator like the last result to be re-shown on application start. -- http://www.deepdroid.com On

[android-developers] Re: Note on Size of Apps

2009-04-15 Thread clark
On Apr 15, 7:32 am, Pd lotusscr...@gmail.com wrote: Have you followed this guide: http://developer.android.com/guide/publishing/preparing.html I doubt that guide is going to help him out in this matter. Foor what it is worth, in Anndroid 1.5, the app size is listed in addition to the data

[android-developers] Re: Note on Size of Apps

2009-04-15 Thread Dianne Hackborn
Correct. The numbers are intended to tell you how much space the app is using in /data, thus how much space you would make available for other things if you removed that data. The code for the built-in applications is in /system, so only their data files are included in those numbers. On Wed,