When i use Alarma Manager. showing Permission Error. kindly tell me, which permission we have to use in manifest file.
i m using this code...
Uri uri = Uri.parse("content://com.android.deskclock/alarm");
Cursor c = getContentResolver().query(uri, null, null, null, null);
if (c != null)
{
String names[] = c.getColumnNames();
for (String temp : names) {
System.out.println(temp);
}
if (c.moveToFirst()) {
do {
int i = 0;
for (int j = 0; j < c.getColumnCount(); j++)
{
c.getString(j));
}
} while (c.moveToNext());
}