i'm trying to access alarm provider to get all enabled alarm information.
so i wrote this :
public static final Uri CONTENT_URI =
Uri.parse("content://com.android.deskclock/alarm");
ContentResolver cr = getContentResolver();
Cursor c = null;
c = cr.query(
CONTENT_URI, ALARM_QUERY_COLUMNS,
null, null, DEFAULT_SORT_ORDER);
but it seemed to have the permission problem??
it always crashed QQ......could someone help me?