[android-developers] Apps not shown in 2.1 Market

2010-03-21 Thread tjlian616
Dear all,

I published several free and paid app in the Market. I recently get
several complains from customers about not finding my app in the 2.1
Market. Even if they have bought them before, they can't find it in
the market or their download list after updating to 2.1.

Can anyone tell me what the problem is?

Thanks a lot!!

P.S. all in north america market.

-- 
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

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words REMOVE ME as the subject.


[android-developers] content observer for calllog works on 1.6 but fails on 2.0

2010-03-03 Thread tjlian616
Dear all,

I am working on a app that can monitor the change in call log and
delete specific call history if it exists. The goal is to be able to
never show call history with some contacts.

It uses a ContentObserver to observe the change in CallLog.Calls. When
onChange() gets called, it will do a contentResolver.delete(...) to
remove history with some contacts. The code is below.

The problem I have now is that it works fine on 1.5, 1.6 but fails on
2.0,2.1.

On 2.0, after making a call, the phone will turn to calllog view
automaticlly, and then my observer is called forever I mean it's
continuously getting called, thousands of times, until I manually
uninstall it...

Could anyone help me with this? Why it happens and how should I fix
it?

Thank you!!

Code for adding observer:

ContentResolver cr = getContentResolver();
CallObserver co = new CallObserver( mHandler );
cr.registerContentObserver( CallLog.Calls.CONTENT_URI, true, co 
);

Here is the code for CallObserver

private class CallObserver extends ContentObserver{
public CallObserver(Handler h){
super(h);
}
@Override
public void  onChange(boolean b){
Log.w(Carrot, called onChange);
some_delete_calllog_function();
}
}

-- 
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