The following error occurs on Pixel devices with build number 
RQ1A.201205.003 or later.  
I would like to know the cause of the error and how to deal with it.  
Is this a bug or a spec change?

■code
```
      ContentResolver resolver = getContentResolver();
      String order = "date ASC limit 100";
      Cursor cursor = resolver.query(
          CallLog.Calls.CONTENT_URI,
          null,
          null,
          null,
          order);
```

■error
```
"Invalid token limit,LINE:142,Method:readExceptionFromParcel 
Exception:Invalid token limit"
```

■Build number where the error occurs
```
https://support.google.com/pixelphone/thread/87641266
・RQ1A.201205.003
・RQ1A.201205.008
・RQ1A.201205.011

https://support.google.com/pixelphone/thread/93232095
・RQ1A.210105.002
・RQ1A.210105.003

https://support.google.com/pixelphone/thread/96244000
・RQ1A.210205.004
```

■If you replace it with the following code, no error will occur.
```
buildUpon().appendQueryParameter("limit", "100")
```

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/81002493-bd91-4922-8cb9-c2cc09e77f16n%40googlegroups.com.

Reply via email to