mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 16:07:30 +00:00
We need READ_CALL_LOG if targetSDK is > 15. What a drag.
This commit is contained in:
parent
c66e221598
commit
80a6c65790
@ -29,6 +29,7 @@
|
|||||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
|
<uses-permission android:name="android.permission.READ_CALL_LOG" />
|
||||||
|
|
||||||
<application android:icon="@drawable/icon"
|
<application android:icon="@drawable/icon"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
|
@ -428,10 +428,11 @@ public class MmsDatabase extends Database {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Cursor getCarrierMmsInformation(String apn) {
|
public Cursor getCarrierMmsInformation(String apn) {
|
||||||
Uri uri = Uri.withAppendedPath(Uri.parse("content://telephony/carriers"), "current");
|
Uri uri = Uri.withAppendedPath(Uri.parse("content://telephony/carriers"), "current");
|
||||||
String selection = (apn == null || apn.trim().length() == 0) ? null : String.format("apn = '%s'", apn.trim());
|
String selection = (apn == null || apn.trim().length() == 0) ? null : "apn = ?";
|
||||||
|
String[] selectionArgs = (apn == null || apn.trim().length() == 0) ? null : new String[] {apn.trim()};
|
||||||
|
|
||||||
return context.getContentResolver().query(uri, null, selection, null, null);
|
return context.getContentResolver().query(uri, null, selection, selectionArgs, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
private PduHeaders getHeadersForId(long messageId) throws MmsException {
|
private PduHeaders getHeadersForId(long messageId) throws MmsException {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user