[android-developers] Cannot publish application today (02/22/2012)

2012-02-22 Thread LSDsl
I cannot publish application today (02/22/2012). Is it only my problem? Or 
it is some updates on server?

-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] getLookupUri(contactId, lookupKey) clarification

2010-11-29 Thread LSDsl
Hi.

Misunderstand with this (getLookupUri(contactId, lookupKey)).

I store id and lookup in my application.

After resave contact (change name for example) lookup also changes
(but ID not change) I cannot select contact from DB using
getLookupUri(contactId, lookupKey). Why? In docs When both IDs are
present in the URI, the system will try to use the long ID first. That
is a very quick query. If the contact is not found, or if the one that
is found has the wrong lookup key, the content provider will parse the
lookup key and track down the constituent raw contacts.. So long ID
is correct in my situation. So can somebody clarify this situation and
say how what information I must store to 100% select contact in future?

-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Open contact view twice

2010-11-28 Thread LSDsl
In my application I open contact view details usng intent:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
final Uri lookupUri =
ContactsContract.Contacts.getLookupUri(contactId, contactLookup);
intent.setData(lookupUri);

After startActivity() al ok. Activity start and I see contact detail.
But when I start activity second time (with the same lookupUri) it is
open new activity instead of update previously run (and now there are
2 view contact activity run with 1 contact details). how I can prevent
this? I want to update exist view contact activity.

P.S. I can change android sources.

-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Access to databases from native code (for example mmssms.db)

2010-08-09 Thread LSDsl
Try to select (or update) from custom databases (for example
mmssms.db) but on init I see  Unable to open the database file. Try
send permissions in manifest
uses-permission android:name=android.permission.WRITE_SMS/
uses-permission android:name=android.permission.READ_SMS/
but this doesn't help. So how solve this problem?

-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en