Re: [android-developers] Re: How to Declare file write permission in framework code

2010-12-14 Thread Mark Murphy
In your original post, you indicated that you modified the firmware "i created a custom listview in framework path:> /froyo/frameworks/base/core/java/android/widget/"). Hence, your questions belong on a more relevant list: http://source.android.com/community/index.html Your changes will only ever

[android-developers] Re: How to Declare file write permission in framework code

2010-12-14 Thread Mansoor
hi Dianne Hackborn, is there any better way to handle this issue instead of modifying launcher ? -- 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

Re: [android-developers] Re: How to Declare file write permission in framework code

2010-12-14 Thread Dianne Hackborn
Please realize that this means your app widget is going to break in many other containers the user might be able to put it in (such as third party launchers) because they won't have declared this permission. The fact that you need to modify launcher to make your app widget work is a big hint that

[android-developers] Re: How to Declare file write permission in framework code

2010-12-13 Thread Mansoor
hey thanks a lot Kostya Vasilyev and Chris Stratton for your kind reply :) i resolved the issue by adding tag to Launcher application manifest . Thanks a lot once again :) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: How to Declare file write permission in framework code

2010-12-13 Thread Chris Stratton
As Kostya said, permissions are per-application. I think you might do better not to hard code this, but create a mechanism where the application can register an output sink for this type of data with the framework. For most applictions, no output sink registered will mean no attempt to output. A