Re: [android-developers] Giving Permission to another app

2011-04-03 Thread guillaume benats
You can use the shared uid feature On Sun, Apr 3, 2011 at 4:16 PM, neohacker arunscari...@gmail.com wrote: I'm in the middle of a project where 2 apps are included say A and B. App A have some permissions enabled that are not present in app B. Can i transfer necessary permission to app B on

Re: [android-developers] notification

2011-03-26 Thread guillaume benats
isn't there anyway to put in on two lines? On Sat, Mar 26, 2011 at 9:36 PM, Mark Murphy mmur...@commonsware.comwrote: Write something shorter. Or, create your own RemoteViews for the contentView. On Sat, Mar 26, 2011 at 4:30 PM, dashman erjdri...@gmail.com wrote: i post a notification and

Re: [android-developers] notification

2011-03-26 Thread guillaume benats
ok thanks :-) On Sat, Mar 26, 2011 at 9:58 PM, Mark Murphy mmur...@commonsware.comwrote: On Sat, Mar 26, 2011 at 4:41 PM, guillaume benats guillaume.ben...@gmail.com wrote: isn't there anyway to put in on two lines? Yes, by creating your own RemoteViews for the contentView

Re: [android-developers] Confused by @Override

2011-03-21 Thread guillaume benats
You do not have to redefine it, it is non-sense as it is a private method, made to be called inner class. You have to call it inside your object. On Mon, Mar 21, 2011 at 8:52 PM, trans transf...@gmail.com wrote: Ah, I see. I'm used to Ruby and it doesn't have this kind of restriction. So I do

[android-developers] SDCard, file exists for one application but not for the other?

2011-01-14 Thread guillaume benats
Hi all, I have an application writing xml files on the SDcard, working, I checked by mounting the card as an image. Another application try to access the same file, but says it does not exists which is totally wrong (and yes I unmounted the sdcard). File is in /mnt/sdcard/file.xml and

[android-developers] [Android sources] Add application

2011-01-03 Thread guillaume benats
Hi all, I have an Android application (sources and/or .apk) and I want to add this application by default in the Android sources I modified. If I use adb install...It is just temporary, I want my app to be accessible from the android source code. How can I do that? Just adding src/ to the build

Re: [android-developers] layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-20 Thread guillaume benats
You cannot judge a framework by the fact that you cannot use it with efficiency ;-) On Mon, Dec 20, 2010 at 11:51 AM, brian purgert brianpurge...@gmail.comwrote: I found this out after I've been working for a couple hours and got no work done lol. I thought I just dident remember how to work

Re: [android-developers] Image zooming functionality in Android just like the iphone

2010-12-09 Thread guillaume benats
Android zoom works already that way for version 2.1 and greater On Thu, Dec 9, 2010 at 11:51 AM, Ajmer Singh ajmersing...@gmail.com wrote: Hi All I am working on an android app where i need to implement an image zooming functionality(zoom will work by moving fingers apart and bringing them

Re: [android-developers] Re: source for SDK

2010-12-07 Thread guillaume benats
Hi, you do not actually need the sources of Android to develop applications, Just the sdk...:http://developer.android.com/sdk/installing.html follow those steps to run it under eclipse! On Tue, Dec 7, 2010 at 11:24 AM, Sachin Dole sachin.d...@gmail.com wrote: so, it looks like i have to get

[android-developers] Permissions storage at installation

2010-12-07 Thread guillaume benats
Hi all, I have read sources of PackageManagerService to follow steps of the installation. I have now a clearer view on how permissions are granted but I did not found in this code where the fact that applications are granted to actual package are stored? I mean, ok permissions are checked,

[android-developers] Re: Getting information about external applications used by one particular application

2010-12-06 Thread guillaume benats
Ok, let me ask it this way: is there a way on a android ( even rooted ) phone to get a list of all the intents a particular application use? or can use? On Thu, Dec 2, 2010 at 10:53 PM, guillaume benats guillaume.ben...@gmail.com wrote: any ideas? On Thu, Dec 2, 2010 at 4:44 PM, Tux

Re: [android-developers] Getting information about external applications used by one particular application

2010-12-04 Thread guillaume benats
by case thanks again On Sat, Dec 4, 2010 at 1:50 PM, Mark Murphy mmur...@commonsware.com wrote: On Fri, Dec 3, 2010 at 4:41 PM, guillaume benats guillaume.ben...@gmail.com wrote: MMh ok sorry, I did not understood it that way, you are right. But isn't there a database including all URIs

Re: [android-developers] Re: Getting information about external applications used by one particular application

2010-12-04 Thread guillaume benats
, Dec 4, 2010 at 3:54 PM, Chris Stratton cs07...@gmail.com wrote: On Dec 4, 9:43 am, guillaume benats guillaume.ben...@gmail.com wrote: Listing all intent filters of all applications of a device using a deassembler Listing all startActivities of all apps using same technique Well

Re: [android-developers] Re: Getting information about external applications used by one particular application

2010-12-04 Thread guillaume benats
Mmmh. So there is no way I can tell that two applications are possibly used together ? On Sat, Dec 4, 2010 at 4:17 PM, Chris Stratton cs07...@gmail.com wrote: On Dec 4, 9:58 am, guillaume benats guillaume.ben...@gmail.com wrote: That what I though, as this is for a case study and to validate

Re: [android-developers] Re: Getting information about external applications used by one particular application

2010-12-04 Thread guillaume benats
wrote: On Dec 4, 10:30 am, guillaume benats guillaume.ben...@gmail.com wrote: Mmmh. So there is no way I can tell that two applications are possibly used together ? I would say no. It's one of those can't prove a negative problems. You can catch two apps in the act of communicating by some

Re: [android-developers] Re: Getting information about external applications used by one particular application

2010-12-04 Thread guillaume benats
I did not know that we could use it! Thanks! Regards On Sat, Dec 4, 2010 at 6:53 PM, Mark Murphy mmur...@commonsware.com wrote: On Sat, Dec 4, 2010 at 12:34 PM, guillaume benats guillaume.ben...@gmail.com wrote: Right, I could use tool like TaintDroid or ScanDroid if they were publicated

Re: [android-developers] Re: Getting information about external applications used by one particular application

2010-12-04 Thread guillaume benats
expression language. Then tools for privacy management could use this policy database on each device. On Sat, Dec 4, 2010 at 7:11 PM, Chris Stratton cs07...@gmail.com wrote: On Dec 4, 12:34 pm, guillaume benats guillaume.ben...@gmail.com wrote: Right, I could use tool like TaintDroid

[android-developers] Re: Getting information about external applications used by one particular application

2010-12-03 Thread guillaume benats
that belongs to an external application? I want thus a way to say: Application a uses activities of application c and d. Is it possible with on-device applications? if not, how could I access this information on a device? Cheers Guillaume -- Benats Guillaume . -- You received

Re: [android-developers] Getting information about external applications used by one particular application

2010-12-03 Thread guillaume benats
Well that's deterministic to me, as that's encoded in the sources, I do not want to know if an application a uses a _particular_ application b but _any_ activity of any other application. But yeah I guess that's not possible as intents are not referenced anywhere else but in the source. Thanks.

Re: [android-developers] Getting information about external applications used by one particular application

2010-12-03 Thread guillaume benats
Murphy mmur...@commonsware.comwrote: On Fri, Dec 3, 2010 at 4:30 PM, guillaume benats guillaume.ben...@gmail.com wrote: Well that's deterministic to me, as that's encoded in the sources, I do not want to know if an application a uses a _particular_ application b but _any_ activity of any