Re: [android-developers] SMS from laptop

2010-11-26 Thread Marcin Orlowski
Hi, I was wondering if it’s safe to use the http protocol to retrieve the message(SMS) to the phone and send it. http is not encrypted so anyone in-between can listen to the content of your traffic with easy. so in general: no. -- You received this message because you are subscribed to the

Re: [android-developers] Can two application's content providers share one authority?

2010-11-26 Thread Dianne Hackborn
No, the authority must be unique. That is why the documentation says to use a fully-qualified name for the authority, so it won't accidentally conflict with another app. If when installing your app there is already another installed app using the same authority as one of your providers, the

Re: [android-developers] Re: Lazy load images into listview

2010-11-26 Thread Kostya Vasilyev
To OP: Have you seen this? http://android-developers.blogspot.com/2010/07/multithreading-for-performance.html -- Kostya 26.11.2010 6:59, Doug пишет: On Nov 23, 3:45 pm, Opengro...@tenromans.com wrote: @Doug, I see a lot of applications that appear to be using multiple threads to download

[android-developers] Re: Can two application's content providers share one authority?

2010-11-26 Thread Pink
Thanks for your response. MIME types are a totally different thing, used to determine the activity or other component that can interact with a particular content: URI. How does mapping done between MIME and CONTENT_URI? Please give me a scenario if possible. On Nov 26, 1:34 pm, Dianne

[android-developers] Re: Passing object via intent

2010-11-26 Thread pedr0
Hi TreKing, could you explain the 3rd way, I have to send to another application an ArrayListCustomObject, how to do it? On 25 Nov, 23:53, TreKing treking...@gmail.com wrote: On Thu, Nov 25, 2010 at 9:55 AM, pedr0 pulsarpie...@gmail.com wrote: I read some tutorial about the object of this

Re: [android-developers] Trouble with loud speaker off on Galaxy S

2010-11-26 Thread Donal Rafferty
Other way around for me! Have found a work around using setMode for now On Thu, Nov 25, 2010 at 5:58 PM, David Fisher davidfsh...@gmail.com wrote: Hi, Which OS version there is on your samsung Galaxy S? I have 2 of them, one with froyo and one with Eclair OS. On the Froyo, the setspeakerphone

[android-developers] Re: OpenGL on multiple threads with sharegroups

2010-11-26 Thread Phil Endecott
On Nov 26, 5:29 am, String sterling.ud...@googlemail.com wrote: Is that an OpenGL ES feature, or something specific to iOS? My understanding is that creating OpenGL contexts is always platform- specific. EGL seems to define textures and vertex buffers as shared by default; see section 2.4 of

[android-developers] Re: Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-26 Thread sblantipodi
contected them, lets see if they answer. On Nov 25, 11:58 pm, TreKing treking...@gmail.com wrote: On Thu, Nov 25, 2010 at 4:10 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: Is there someone who know when we can finally upload this file without having to re-upload and re-upload it?

[android-developers] Access to Google Reader API

2010-11-26 Thread Robert Auger
Hello, I am trying to develop a Google Reader app for Android. This app was working fine before today with the following code : monTransport = GoogleTransport.create(); GoogleHeaders entete = (GoogleHeaders) monTransport.defaultHeaders; entete.setApplicationName(ActuXml); entete.gdataVersion =

[android-developers] Re: Android Market Console Pagination

2010-11-26 Thread Mr Pants
Seemed to have been fixed now. Thanks On Nov 25, 9:45 pm, TreKing treking...@gmail.com wrote: On Wed, Nov 24, 2010 at 10:34 PM, Adam Hammer adamhamm...@gmail.com wrote: Especially since basic pagination is something a first year student should be able to do. You're assuming the people

[android-developers] Test Framework available in Andorid Native Layer

2010-11-26 Thread nagaraj attimani
Hi All, I would like to test A/V video codec in native layer using test framework setup. Can you please guide me on this ? Regards, Nagaraj -- 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: OpenGL on multiple threads with sharegroups

2010-11-26 Thread Adam Hammer
I do bitmap loading in another thread, but I do glBindTexture in the main graphics thread. Works well for me, I load bitmaps stored in zips delivered by contentproviders into textures. I think opengl es does have mechanisms for sharing textures across GL contexts, but the above method should be

[android-developers] Re: PUBLISHED APPS MISSING FROM UPDATED CONSOLE

2010-11-26 Thread Adam Hammer
Thanks, I can see all my apps again. On Nov 25, 1:14 am, Nicolas Thibaut nthibau...@gmail.com wrote: thanks, it works for me I can publish :) On 25 nov, 10:04, String sterling.ud...@googlemail.com wrote: So, my best selling app was also AWOL from the console this morning. But it IS still

[android-developers] Parcelable iterface implementation in parent class

2010-11-26 Thread pedr0
Hi at all, I have this doubt thinking about the Parcelable interface, question is: Let A and B two type of object, with B that extend A, when I implement the parcelable interface for A all is ok but when I have to implement the parcelable interface for B can I write in parcel only B object

[android-developers] CPU frequency scaling

2010-11-26 Thread viktor
Hi, Is it any way scaling cpu frequency in real time? -- 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] Re: Can two application's content providers share one authority?

2010-11-26 Thread Pink
Any help On Nov 26, 2:21 pm, Pink sivareddy.j...@gmail.com wrote: Thanks for your response.  MIME types are a totally different thing, used to determine the activity or other component that can interact with a particular content: URI.  How does mapping done between MIME and

[android-developers] Using Uses-Library in android application

2010-11-26 Thread Reddy
Hi, Can any one explain how i can use the Uses-Library tag in Android manifest file as i am facing problem in using it. Following is the exact senario what i am doing. 1. Having an external jar file. name it as sample.jar 2. Created one Android application which uses the jar in it. (Added

[android-developers] How to implement 3D morphing in Open GL ES?

2010-11-26 Thread Eyvind Almqvist
3D morphing is easy to implement in M3G. You can just morph different 3d meshes with the Morph class. It is much more difficult to implement this in Open GL ES, because there are no classes for morphing here. Does anyone know how to implement 3D morphing in Open GL ES? -- You received this

[android-developers] Re: OpenGL on multiple threads with sharegroups

2010-11-26 Thread Phil Endecott
On Nov 26, 11:08 am, Adam Hammer adamhamm...@gmail.com wrote: I do bitmap loading in another thread, but I do glBindTexture in the main graphics thread. Works well for me, I load bitmaps stored in zips delivered by contentproviders into textures. Yes; thanks; I'm actually doing something like

[android-developers] Re: Android Contact Search

2010-11-26 Thread Federico Paolinelli
Check the code under chapter 7 here: http://media.wiley.com/product_ancillary/27/04705655/DOWNLOAD/Professional%20Android%202%20Code%20Listings.zip Hope this helps, Federico On 26 Nov, 07:29, Androidbaby hoto...@gmail.com wrote: Scenario: i am working on a code to get the contact

Re: [android-developers] Re: Passing object via intent

2010-11-26 Thread Mark Murphy
On Fri, Nov 26, 2010 at 4:31 AM, pedr0 pulsarpie...@gmail.com wrote: Hi TreKing, could you explain the 3rd way, I have to send to another application an ArrayListCustomObject, how to do it? Unless you wrote another application, that is unlikely to work. Even then, it is a very bad idea, since

[android-developers] Re: Passing object via intent

2010-11-26 Thread Federico Paolinelli
I am interested in this approach too. Do you mean having a sort of toBundle() method and a constructor that accept a Bundle, or is there something more slick? Thanks, Federico On 26 Nov, 10:31, pedr0 pulsarpie...@gmail.com wrote: Hi TreKing, could you explain the 3rd way, I have to

Re: [android-developers] Re: Can two application's content providers share one authority?

2010-11-26 Thread Mark Murphy
On Fri, Nov 26, 2010 at 4:21 AM, Pink sivareddy.j...@gmail.com wrote:  How does mapping done between MIME and CONTENT_URI? getType() on ContentProvider. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

Re: [android-developers] Using Uses-Library in android application

2010-11-26 Thread Mark Murphy
On Fri, Nov 26, 2010 at 7:04 AM, Reddy devireddy@gmail.com wrote: Can any one explain how i can use the Uses-Library tag in Android manifest file as i am facing problem in using it. Following is the exact senario what i am doing. 1. Having an external jar file. name it as sample.jar 2.

[android-developers] Re: CPU frequency scaling

2010-11-26 Thread Alessandro Pellizzari
Il Fri, 26 Nov 2010 03:31:13 -0800, viktor ha scritto: Is it any way scaling cpu frequency in real time? On most devices it is already enabled. Bye. -- 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: Adding separators to a ListView

2010-11-26 Thread Neilz
Yes, this topic again! One thing that never occurred to me before... how can I add separate OnItemClickListeners to my different lists? For each of the adapters that I add to the MergeAdapter, I want different actions when I click the item. Currently I have no way, it seems, to tell what's been

[android-developers] Re: Can two application's content providers share one authority?

2010-11-26 Thread Pink
If i have an activity which has one intent-filter as android:mimeType=vnd.android.cursor.item/contact .. And in the activity if i call getData() on the intent of the activity. What will i get? How does android execute this request? getType() on ContentProvider. You mean, When ever

Re: [android-developers] Re: Adding separators to a ListView

2010-11-26 Thread Mark Murphy
BTW, support for MergeAdapter is best on the [cw-android] Google Group: http://groups.google.com/group/cw-android I try not to clutter up the main lists with CommonsWare-specific stuff. Besides, I'm more likely to notice the question. :-) On Fri, Nov 26, 2010 at 8:14 AM, Neilz

Re: [android-developers] Re: Can two application's content providers share one authority?

2010-11-26 Thread Mark Murphy
On Fri, Nov 26, 2010 at 8:26 AM, Pink sivareddy.j...@gmail.com wrote: If i have an activity which has one intent-filter as android:mimeType=vnd.android.cursor.item/contact .. And in the activity if i call getData() on the intent of the activity. What will i get? You will get a Uri or

[android-developers] Re: CPU frequency scaling

2010-11-26 Thread viktor
I mean If it is possible without remaking a ROM. On 26 Лис, 15:06, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26 Nov 2010 03:31:13 -0800, viktor ha scritto: Is it any way scaling cpu frequency in real time? On most devices it is already enabled. Bye. -- You received this

[android-developers] Re: CPU frequency scaling

2010-11-26 Thread Alessandro Pellizzari
Il Fri, 26 Nov 2010 05:50:32 -0800, viktor ha scritto: I mean If it is possible without remaking a ROM. On 26 Лис, 15:06, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26 Nov 2010 03:31:13 -0800, viktor ha scritto: Is it any way scaling cpu frequency in real time? On most devices

Re: [android-developers] Re: Passing object via intent

2010-11-26 Thread TreKing
On Fri, Nov 26, 2010 at 3:31 AM, pedr0 pulsarpie...@gmail.com wrote: Hi TreKing, could you explain the 3rd way, I have to send to another application an ArrayListCustomObject, how to do it? Well, as Mark has explained, trying to send some CustomObject to another app doesn't sound like the

Re: [android-developers] Access to Google Reader API

2010-11-26 Thread TreKing
On Fri, Nov 26, 2010 at 4:25 AM, Robert Auger bobyg...@gmail.com wrote: Any change on the server side for the unofficial Google Reader API ? You'll probably have better luck asking this question on a forum dedicated to said API.

Re: [android-developers] Parcelable iterface implementation in parent class

2010-11-26 Thread TreKing
On Fri, Nov 26, 2010 at 5:22 AM, pedr0 pulsarpie...@gmail.com wrote: when I have to implement the parcelable interface for B can I write in parcel only B object fields ? You can write any fields you like into the parcel. can I be sure that the system call the parcelable interface

[android-developers] Re: Parcelable iterface implementation in parent class

2010-11-26 Thread pedr0
Yes It works, thanks so much. On 26 Nov, 15:18, TreKing treking...@gmail.com wrote: On Fri, Nov 26, 2010 at 5:22 AM, pedr0 pulsarpie...@gmail.com wrote: when I have to implement the parcelable interface for B can I write in parcel only B object fields ? You can write any fields you like

[android-developers] Android Library project and widget xml referes in AndroidManifest.xml

2010-11-26 Thread Premier
Hello, i'm using Android Project Library (http://goo.gl/7vvxI). In Android docs, it copys all items from android library project AndroidManifest.xml in application AndroidManifest.xml like in example, AndroidManifest.xml of library project manifest ... application ... activity

[android-developers] Re: Android Library project and widget xml referes in AndroidManifest.xml

2010-11-26 Thread Premier
For example, for android default resource you can use @android:anim/ cycle_interpolator And for resource in library project? On 26 Nov, 15:37, Premier a.grum...@gmail.com wrote: Hello, i'm using Android Project Library (http://goo.gl/7vvxI). In Android docs, it copys all items from android

Re: [android-developers] Re: button on screen that controls page sliding

2010-11-26 Thread Vinay Julme
For going from one Activity to another with animation you can use overridePendingTransition() but this won't help in drag Have a look at this tutorial where I found this guy pretty useful. http://www.inter-fuser.com/2009/07/android-transistions-slide-in-and-slide.html

[android-developers] Re: CPU frequency scaling

2010-11-26 Thread viktor
Thanks Alessandro, I will try managing governor. On 26 Лис, 15:58, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26 Nov 2010 05:50:32 -0800, viktor ha scritto: I mean If it is possible without remaking a ROM. On 26 Лис, 15:06, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26

[android-developers] WebView focus and clickable links

2010-11-26 Thread Samuh
We have a ListView and a WebView in a FrameLayout. The WebView is set as empty view for the ListView. The WebView contains some HTML text with hyperlinks. The problem is when the List is empty and the webView is displayed, we cannot click the links in the WebView using the touch interface.

[android-developers] Scale a Drawable dinamically

2010-11-26 Thread gato chlr
Hi, i have a drawable and i want to scale it programatically, does anybody know how to to it? -- 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

[android-developers] Repeating background does not repeat

2010-11-26 Thread Vince
Hi all, Basically, I want to set a repeating background on a given ImageView when loading an image from network. Easy stuff to do. But I'm facing a strange problem using a dedicated drawable with tileMode set to repeat. Actually, sometimes the source image is correctly repeated, sometimes it's

[android-developers] Re: Scale a Drawable dinamically

2010-11-26 Thread Leon Moreyn-Android Development
You want to set dimensions via programmed settings like setWidth() and setHeight()? Or are you talking about something else. Can you elaborate as to the over all goal of this? On Nov 26, 12:33 pm, gato chlr dany...@gmail.com wrote: Hi, i have a drawable and i want to scale it programatically,

[android-developers] How to make such a customized component

2010-11-26 Thread cindy
I need to build a customized component has following functionality: 1 it has 2 component, a special text input box, and a image button 2 The text input box has up/down arrow at the right end. When there is a list of result back, the text box will show the result list. It is very similar to

[android-developers] listView.getCheckedItemPositions() without CheckedTextView

2010-11-26 Thread Tina
Hi, all! I am trying to create multiple selection ListView but I could not use CheckedTextView: my string is much more complex then text View. But, when I use any other control exept CheckedTextView listView after selection getCheckedItemPositions() has no selected items at all. I created custom

Re: [android-developers] Scale a Drawable dinamically

2010-11-26 Thread Dianne Hackborn
You set the size of the drawable with Drawable.setBounds(). Exactly what will happen due to this depends on the particular drawable. On Fri, Nov 26, 2010 at 9:33 AM, gato chlr dany...@gmail.com wrote: Hi, i have a drawable and i want to scale it programatically, does anybody know how to to

Re: [android-developers] Re: Android Library project and widget xml referes in AndroidManifest.xml

2010-11-26 Thread Xavier Ducrohet
Resource from library project are packaged with the application (that's the whole point of library projects), so you don't need to change any @type references. The only thing you need to update are the classes (like Activity, Service, etc...) that are declared relative to the library package in

[android-developers] Re: IllegalStateException in MediaPlayer (Redux)

2010-11-26 Thread joebowbeer
Do you have an error listener registered? Does it give you more information? According to the state diagram, stop() is not available in all states. Perhaps you're calling stop() in an invalid state, causing the player to transition to the Error state, at which point prepareAsync would fail:

[android-developers] google sky map

2010-11-26 Thread pranjal shekhawat
hello friends, i am new to android programming ,and im not aware if google sky map can be added to the application. if yes can any of u plz guide how it can be used in an application or suggest any site that has some relevant tutorial about using using google sky map in android application. how

[android-developers] unable to send co-ordinates from emulator control to the emulator

2010-11-26 Thread pranjal shekhawat
hello friends, when im trying to send dummy co-ordinates from location control emulator control(ddms) .. there is a pop up window which says unable to send command to emulator... what could be the problemi m never able to send co-ordinates in any program fro emulator control option from

Re: [android-developers] Animate to new position - impossible?

2010-11-26 Thread Jason Van Anden
Got it - but ... Its not obvious what the: something to adjust your layout to cause your View to stick in the new spot. is. I am already using the AnimationListener to trigger post animation code - but I am stuck on how to make this actually happen. It would be great to have a snippet that

Re: [android-developers] Animate to new position - impossible?

2010-11-26 Thread Mark Murphy
Well, it is highly dependent on your layout. Here is an example: https://github.com/commonsguy/cw-advandroid/tree/master/Animation/SlidingPanel/ On Fri, Nov 26, 2010 at 3:31 PM, Jason Van Anden jason.van.an...@gmail.com wrote: Got it - but ... Its not obvious what the: something to adjust

Re: [android-developers] Re: SAX- \n \r not recognized

2010-11-26 Thread Frank Weiss
i have a node called emial under that content is the attribute, in that content I'll get some text that text is have \n and \r. It's not clear what you're saying. I suppose it would be an issue trying to put control characters into an XML attribute. It would help if you posted a snippet of

Re: [android-developers] Re: Kill an app / package in API 8 (Froyo)

2010-11-26 Thread Frank Weiss
I hope not. Task killers are more trouble than they're worth, IMO. Android OS already provides a way to Force stop an application. And right next to the Force stop button is the Uninstall button, -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: custom view in widget

2010-11-26 Thread Hendrik Greving
I'm much further now, thanks. I have 5 button in a horizontal linear layout. Each button is currently 167x280. I read that a one row widget is normally 320x100. However, if I scale each button to 64x100, it looks bad, probably because I need the density?! On a high density screen like a Nexus

Re: [android-developers] Re: Kill an app / package in API 8 (Froyo)

2010-11-26 Thread Dianne Hackborn
Unless there is some evidence that the exact same problems wouldn't happen again, sorry no. On Tue, Nov 23, 2010 at 2:05 PM, reistar bryan.y...@gmail.com wrote: Do you think this will ever become available again in some form to 3rd party apps? I understand the problems task killers caused, but

Re: [android-developers] How to make such a customized component

2010-11-26 Thread TreKing
On Fri, Nov 26, 2010 at 12:52 PM, cindy ypu01...@yahoo.com wrote: 1 it has 2 component, a special text input box, and a image button Horizontal LinearLayout with your special text input box and an ImageButton should be all you need. 2 The text input box has up/down arrow at the right end.

Re: [android-developers] Re: custom view in widget

2010-11-26 Thread Kostya Vasilyev
When you read about standard widget sizes, that's in dp units: device independent pixels. On a high-res screen, your layouts are scaled by Android to a larger pixel size (a factor of 1.5 for hdpi). As for your issue with scaling - did you add support for scaling in the manifest? You can do it by

Re: [android-developers] Re: custom view in widget

2010-11-26 Thread Hendrik Greving
So basically the ideal image size for a standard 1-row widget would be 320x100 * 1.5? I did both the minimum APIlevel (7) and enabled scaling (true). The problem I have is that they don't scale in an (emulated-) tablet. The OS seems to scale the width more than the height. I played around with

[android-developers] How to allow for devices without a touchscreen android.hardware.touchscreen

2010-11-26 Thread tberthel
Basically all my games support non touchscreen devices but it seems that the store thinks my games have this as a required feature. So how do I make it so the following does not show up in the Android Market? This apk requests 1 features that will be used for Android Market filtering

Re: [android-developers] Re: custom view in widget

2010-11-26 Thread Kostya Vasilyev
Yes, portrait mode seems to be somewhat different. I don't have a tablet, but had to fix this for a Motorola Milestone (when the keyboard is pulled out, the home screen rotates). I did this by doing three things: - having separate layouts for portrait and landscape modes (you can use

Re: [android-developers] How to allow for devices without a touchscreen android.hardware.touchscreen

2010-11-26 Thread Kostya Vasilyev
Just an idea: you could try adding this feature in the manifest yourself, and set android:required=false. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 27.11.2010 2:01 пользователь tberthel travisberthe...@hotmail.com написал: Basically all my games support non touchscreen devices but it

[android-developers] Re: SAX- \n \r not recognized

2010-11-26 Thread DanH
Yep, if you're expecting whitespace characters to make it through XML encode/decode, don't. In general they're ignored (except perhaps for CDATA), so if you want them preserved you should use some sort of substitution code. On Nov 22, 9:57 pm, Android Humanoid droid.hu...@gmail.com wrote: Hi

Re: [android-developers] Re: custom view in widget

2010-11-26 Thread Hendrik Greving
That's a good idea, I'll try that. By the way, if I want to replace one of the buttons from my widget provider per remoteviews, can I do this (for instance with removeAllViews and addView)? I've tried this and the widget than fails loading. Or do I need to set up a layout each for all possible

Re: [android-developers] Re: Google Add-On Maps for 1.5 and higher

2010-11-26 Thread Dianne Hackborn
No, no android:optional on uses-permission. Semantically that is totally different than what am talking about here, which means to still allow being installed even if the device doesn't support the library (or feature since you can do the same uses-feature). On Tue, Jan 19, 2010 at 1:43 AM,

[android-developers] Binary sms?

2010-11-26 Thread vnv
Hi, is there a way to generate binary sms in emulator? -- 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] droid 2 drivers

2010-11-26 Thread Hendrik Greving
A Nexus One worked fine and installed the adb drivers right away. It can't find the drivers for Droid 2 (Vista 32). Anybody know where to get them from? Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] How to allow for devices without a touchscreen android.hardware.touchscreen

2010-11-26 Thread Dianne Hackborn
It is currently assumed that applications require a touchscreen, since a non-touch device is not a compatible device. To be honest, I would just not worry about it; at whatever point non-touch devices are going to become compatible, there will be a lot of noise about it with instructions on how

[android-developers] Re: droid 2 drivers

2010-11-26 Thread Hendrik Greving
By the way I've tried the Motorola link but it doesn't take the drivers http://www.motorola.com/consumers/v/index.jsp?vgnextoid=bda09ec8009a0210VgnVCM108806b00aRCRD - Original Message - From: Hendrik Greving To: Android Developers Sent: Friday, November 26, 2010 8:21 PM

[android-developers] Re: How to make such a customized component

2010-11-26 Thread cindy
Still looking for the help. On Nov 26, 2:02 pm, TreKing treking...@gmail.com wrote: On Fri, Nov 26, 2010 at 12:52 PM, cindy ypu01...@yahoo.com wrote: 1 it has 2 component, a special text input box, and a image button Horizontal LinearLayout with your special text input box and an

Re: [android-developers] Re: How to make such a customized component

2010-11-26 Thread TreKing
On Fri, Nov 26, 2010 at 11:20 PM, cindy ypu01...@yahoo.com wrote: Still looking for the help. With what? I answered both your questions. If you're still stuck on this you should elaborate on what you've done so far and what SPECIFICALLY you're having trouble with.

[android-developers] Adding a user to a new group

2010-11-26 Thread Jins Varghese
Hi All, I am facing some permission problem while trying to access a directory. I am running in system server context which meants I am running as user system . I want a access a file in a directory logdir and this directory does not have execute permission for others(770).Because of security

Re: [android-developers] Re: droid 2 drivers

2010-11-26 Thread Kostya Vasilyev
Have you looked here: http://developer.Motorola.com ? -- Kostya Vasilyev -- http://kmansoft.wordpress.com 27.11.2010 7:33 пользователь Hendrik Greving fourhend...@gmail.com написал: -- You received this message because you are subscribed to the Google Groups Android Developers group. To post